Lines Matching refs:inputEventPaths
388 glob_t inputEventPaths; local
394 ret = glob(inputEventPathName, 0, nullptr, &inputEventPaths);
398 for (int i = 0; i < inputEventPaths.gl_pathc; i++) {
399 fd = TEMP_FAILURE_RETRY(open(inputEventPaths.gl_pathv[i], O_RDWR));
406 inputEventPaths.gl_pathv[i]);
415 globfree(&inputEventPaths);
422 ALOGW("Retry #%d to search in %zu input devices.", retry, inputEventPaths.gl_pathc);
436 glob_t inputEventPaths; local
442 ret = glob(inputEventPathName, 0, nullptr, &inputEventPaths);
447 for (int i = 0; i < inputEventPaths.gl_pathc; i++) {
448 fd = TEMP_FAILURE_RETRY(open(inputEventPaths.gl_pathv[i], O_RDWR));
456 inputEventPaths.gl_pathv[i]);
465 globfree(&inputEventPaths);
472 ALOGW("Retry #%d to search in %zu input devices.", retry, inputEventPaths.gl_pathc);