-Werror,-Wunused-but-set-variable (Clang 13 trunk)
all three variables were unused ever since the code's introduction in
229a0de9c8
"CWS-TOOLING: integrate CWS
appleremote01"
Change-Id: Ib755b86c81a6823c440f9f6a392b8f4b7de973ad
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116984
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
@@ -407,8 +407,6 @@ static void QueueCallbackFunction(void* target, IOReturn result, void* refcon,
|
|||||||
- (BOOL) initializeCookies {
|
- (BOOL) initializeCookies {
|
||||||
IOHIDDeviceInterface122** handle = (IOHIDDeviceInterface122**)hidDeviceInterface;
|
IOHIDDeviceInterface122** handle = (IOHIDDeviceInterface122**)hidDeviceInterface;
|
||||||
IOHIDElementCookie cookie;
|
IOHIDElementCookie cookie;
|
||||||
long usage;
|
|
||||||
long usagePage;
|
|
||||||
id object;
|
id object;
|
||||||
NSArray* elements = nil;
|
NSArray* elements = nil;
|
||||||
NSDictionary* element;
|
NSDictionary* element;
|
||||||
@@ -439,16 +437,6 @@ static void QueueCallbackFunction(void* target, IOReturn result, void* refcon,
|
|||||||
if (object == NULL || CFGetTypeID(object) != CFNumberGetTypeID()) continue;
|
if (object == NULL || CFGetTypeID(object) != CFNumberGetTypeID()) continue;
|
||||||
cookie = (IOHIDElementCookie) [object longValue];
|
cookie = (IOHIDElementCookie) [object longValue];
|
||||||
|
|
||||||
//Get usage
|
|
||||||
object = [element valueForKey: (NSString*)CFSTR(kIOHIDElementUsageKey) ];
|
|
||||||
if (object == nil || ![object isKindOfClass:[NSNumber class]]) continue;
|
|
||||||
usage = [object longValue];
|
|
||||||
|
|
||||||
//Get usage page
|
|
||||||
object = [element valueForKey: (NSString*)CFSTR(kIOHIDElementUsagePageKey) ];
|
|
||||||
if (object == nil || ![object isKindOfClass:[NSNumber class]]) continue;
|
|
||||||
usagePage = [object longValue];
|
|
||||||
|
|
||||||
[allCookies addObject: [NSNumber numberWithInt:(int)cookie]];
|
[allCookies addObject: [NSNumber numberWithInt:(int)cookie]];
|
||||||
}
|
}
|
||||||
CFRelease(elements);
|
CFRelease(elements);
|
||||||
@@ -461,8 +449,6 @@ static void QueueCallbackFunction(void* target, IOReturn result, void* refcon,
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (BOOL) openDevice {
|
- (BOOL) openDevice {
|
||||||
HRESULT result;
|
|
||||||
|
|
||||||
IOHIDOptionsType openMode = kIOHIDOptionsTypeNone;
|
IOHIDOptionsType openMode = kIOHIDOptionsTypeNone;
|
||||||
if ([self isOpenInExclusiveMode]) openMode = kIOHIDOptionsTypeSeizeDevice;
|
if ([self isOpenInExclusiveMode]) openMode = kIOHIDOptionsTypeSeizeDevice;
|
||||||
IOReturn ioReturnValue = (*hidDeviceInterface)->open(hidDeviceInterface, openMode);
|
IOReturn ioReturnValue = (*hidDeviceInterface)->open(hidDeviceInterface, openMode);
|
||||||
@@ -470,7 +456,7 @@ static void QueueCallbackFunction(void* target, IOReturn result, void* refcon,
|
|||||||
if (ioReturnValue == KERN_SUCCESS) {
|
if (ioReturnValue == KERN_SUCCESS) {
|
||||||
queue = (*hidDeviceInterface)->allocQueue(hidDeviceInterface);
|
queue = (*hidDeviceInterface)->allocQueue(hidDeviceInterface);
|
||||||
if (queue) {
|
if (queue) {
|
||||||
result = (*queue)->create(queue, 0, 12); //depth: maximum number of elements in queue before oldest elements in queue begin to be lost.
|
(*queue)->create(queue, 0, 12); //depth: maximum number of elements in queue before oldest elements in queue begin to be lost.
|
||||||
|
|
||||||
IOHIDElementCookie cookie;
|
IOHIDElementCookie cookie;
|
||||||
NSEnumerator *allCookiesEnumerator = [allCookies objectEnumerator];
|
NSEnumerator *allCookiesEnumerator = [allCookies objectEnumerator];
|
||||||
|
Reference in New Issue
Block a user