Lines Matching refs:result
321 int32_t result = 0;
329 result = inotify_add_watch(mInotifyId_, devPath_.c_str(), IN_DELETE | IN_CREATE);
330 if (result == INPUT_FAILURE) {
332 return result;
336 result = epoll_wait(mEpollId_, epollEventList_, EPOLL_MAX_EVENTS, EPOLL_WAIT_TIMEOUT);
337 if (result <= 0) {
340 for (int32_t i = 0; i < result; i++) {
497 int32_t result = read(notifyFd, InfoBuf, BUFFER_SIZE);
498 for (p = InfoBuf; p < InfoBuf + result;) {
533 int32_t result {0};
539 result = epoll_ctl(epollFd, EPOLL_CTL_ADD, fileFd, &eventItem);
540 return result;
800 RetStatus InputDeviceManager::RunCapacitanceTest(uint32_t devIndex, uint32_t testType, char *result, uint32_t length)
804 (result == nullptr) || (length < SELF_TEST_RESULT_LEN)) {