HomeSort by relevance Sort by last modified time
    Searched refs:EINTR (Results 351 - 375 of 1355) sorted by null

<<11121314151617181920>>

  /external/ltp/testcases/kernel/controllers/freezer/
vfork.c 126 if ((rc == -1) && (errno != EINTR))
274 if ((errno == EAGAIN) || (errno == EINTR))
293 if ((errno == EAGAIN) || (errno == EINTR))
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
4-3.c 19 * The function does not return EINTR
23 * -> check that EINTR is never returned
147 if (ret == EINTR)
148 FAILED("pthread_detach() returned EINTR");
153 } while ((ret == -1) && (errno == EINTR));
213 } while ((ret == -1) && (errno == EINTR));
  /external/mesa3d/src/intel/vulkan/
anv_gem.c 40 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
191 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
241 } while (ret == -1 && (errno == EINTR || errno == EAGAIN));
  /external/selinux/libselinux/src/
avc_internal.c 109 } while (rc < 0 && errno == EINTR);
235 if (errno == 0 || errno == EINTR)
260 if (errno == 0 || errno == EINTR)
procattr.c 160 } while (ret < 0 && errno == EINTR);
248 } while (ret < 0 && errno == EINTR);
252 } while (ret < 0 && errno == EINTR);
setrans_client.c 120 && (errno == EINTR)) ;
148 while (((count = readv(fd, resp_hdr, 3)) < 0) && (errno == EINTR)) ;
166 while (((count = readv(fd, &resp_data, 1))) < 0 && (errno == EINTR)) ;
  /external/selinux/mcstrans/src/
mcstransd.c 104 while (((count = writev(fd, resp_hdr, 3)) < 0) && (errno == EINTR));
113 while (((count = writev(fd, &resp_data, 1)) < 0) && (errno == EINTR));
212 while (((count = readv(fd, req_hdr, 3)) < 0) && (errno == EINTR));
248 while (((count = readv(fd, req_data, 2)) < 0) && (errno == EINTR));
418 if (errno == EINTR) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 98 EINTR = getattr(errno, 'EINTR', 4)
357 if e.args[0] == EINTR:
386 if e.args[0] == EINTR:
439 # The try..except to catch EINTR was moved outside the
441 if e.args[0] == EINTR:
453 if e.args[0] == EINTR:
482 if e.args[0] == EINTR:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
socket.py 94 EINTR = getattr(errno, 'EINTR', 4)
353 if e.args[0] == EINTR:
382 if e.args[0] == EINTR:
435 # The try..except to catch EINTR was moved outside the
437 if e.args[0] == EINTR:
449 if e.args[0] == EINTR:
478 if e.args[0] == EINTR:
  /external/python/cpython2/Lib/
socket.py 98 EINTR = getattr(errno, 'EINTR', 4)
357 if e.args[0] == EINTR:
386 if e.args[0] == EINTR:
439 # The try..except to catch EINTR was moved outside the
441 if e.args[0] == EINTR:
453 if e.args[0] == EINTR:
482 if e.args[0] == EINTR:
  /frameworks/native/libs/vr/libpdx_uds/
ipc_helper_tests.cpp 144 TEST_F(SendTest, Eintr) {
146 .WillOnce(SetErrnoAndReturn(EINTR, -1))
196 TEST_F(RecvTest, Eintr) {
198 .WillOnce(SetErrnoAndReturn(EINTR, -1))
258 TEST_F(SendMessageTest, Eintr) {
260 .WillOnce(SetErrnoAndReturn(EINTR, -1))
263 .WillOnce(SetErrnoAndReturn(EINTR, -1))
329 TEST_F(RecvMessageTest, Eintr) {
331 .WillOnce(SetErrnoAndReturn(EINTR, -1))
334 .WillOnce(SetErrnoAndReturn(EINTR, -1)
    [all...]
  /hardware/ril/reference-ril/
atchannel.c 115 } while (err < 0 && errno == EINTR);
377 } while (count < 0 && errno == EINTR);
495 } while (written < 0 && errno == EINTR);
508 } while ((written < 0 && errno == EINTR) || (written == 0));
534 } while (written < 0 && errno == EINTR);
547 } while ((written < 0 && errno == EINTR) || (written == 0));
  /prebuilts/gdb/darwin-x86/lib/python2.7/
socket.py 94 EINTR = getattr(errno, 'EINTR', 4)
353 if e.args[0] == EINTR:
382 if e.args[0] == EINTR:
435 # The try..except to catch EINTR was moved outside the
437 if e.args[0] == EINTR:
449 if e.args[0] == EINTR:
478 if e.args[0] == EINTR:
  /prebuilts/gdb/linux-x86/lib/python2.7/
socket.py 94 EINTR = getattr(errno, 'EINTR', 4)
353 if e.args[0] == EINTR:
382 if e.args[0] == EINTR:
435 # The try..except to catch EINTR was moved outside the
437 if e.args[0] == EINTR:
449 if e.args[0] == EINTR:
478 if e.args[0] == EINTR:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
socket.py 94 EINTR = getattr(errno, 'EINTR', 4)
353 if e.args[0] == EINTR:
382 if e.args[0] == EINTR:
435 # The try..except to catch EINTR was moved outside the
437 if e.args[0] == EINTR:
449 if e.args[0] == EINTR:
478 if e.args[0] == EINTR:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
socket.py 94 EINTR = getattr(errno, 'EINTR', 4)
353 if e.args[0] == EINTR:
382 if e.args[0] == EINTR:
435 # The try..except to catch EINTR was moved outside the
437 if e.args[0] == EINTR:
449 if e.args[0] == EINTR:
478 if e.args[0] == EINTR:
  /art/runtime/jdwp/
jdwp_socket.cc 231 if (sock < 0 && errno != EINTR) {
431 * EINTR, (2) open an additional fd ("wake pipe") and write to
438 if (errno == EINTR) {
473 if (errno != EINTR) {
476 VLOG(jdwp) << "+++ EINTR hit";
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.cc 65 // EINTR sucks.
70 } while (result < 0 && errno == EINTR);
144 } while (result < 0 && errno == EINTR);
247 } while (bytes < 0 && errno == EINTR);
  /cts/tests/tests/graphics/jni/
android_graphics_cts_SyncTest.cpp 54 } while (ret == -1 && errno == EINTR);
  /device/linaro/bootloader/edk2/StdLib/Include/
errno.h 56 #define EINTR __EINTR /* 4 Interrupted system call */
  /external/autotest/client/cros/
xmlrpc_server.py 21 doesn't handle signals, not even EINTR. As a result, we have this class.
44 # on EINTR, so handle_request will be blocked at select.select forever
85 if v[0] != errno.EINTR:
  /external/autotest/client/tests/aio_dio_bugs/src/
aio-dio-invalidate-failure.c 137 if (pid < 0 && errno == EINTR) {
  /external/bsdiff/
file.cc 88 if (!success && errno == EINTR)
  /external/compiler-rt/lib/profile/
InstrProfilingUtil.c 95 if (errno != EINTR) {
  /external/drm_hwcomposer/
drmeventlistener.cpp 125 } while (ret == -1 && errno == EINTR);

Completed in 742 milliseconds

<<11121314151617181920>>