OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:wait_result
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/test/asan/TestCases/Linux/
clone_test.cc
30
pid_t
wait_result
= waitpid(clone_pid, &status, __WCLONE);
local
31
if (
wait_result
< 0) {
35
if (
wait_result
== clone_pid && WIFEXITED(status)) {
/external/valgrind/memcheck/tests/
file_locking.c
114
int
wait_result
;
local
116
wait_result
= wait4(fork_result, &child_status, 0, 0);
117
assert(
wait_result
>= 0);
/external/protobuf/src/google/protobuf/compiler/
subprocess.cc
171
DWORD
wait_result
=
local
175
if (
wait_result
>= WAIT_OBJECT_0 &&
176
wait_result
< WAIT_OBJECT_0 + handle_count) {
177
signaled_handle = handles[
wait_result
- WAIT_OBJECT_0];
178
} else if (
wait_result
== WAIT_FAILED) {
183
<<
wait_result
;
225
DWORD
wait_result
= WaitForSingleObject(child_handle_, INFINITE);
local
227
if (
wait_result
== WAIT_FAILED) {
230
} else if (
wait_result
!= WAIT_OBJECT_0) {
232
<<
wait_result
;
[
all
...]
/external/kernel-headers/original/uapi/linux/
kfd_ioctl.h
232
uint32_t
wait_result
; /* from KFD */
member in struct:kfd_ioctl_wait_events_args
/external/autotest/client/cros/networking/
android_xmlrpc_server.py
315
wait_result
= self.ad.ed.pop_event(wait_event, timeout_seconds)
319
actual_ssid =
wait_result
['data'][utils.WifiEnums.SSID_KEY]
/bionic/libc/kernel/uapi/linux/
kfd_ioctl.h
214
uint32_t
wait_result
;
member in struct:kfd_ioctl_wait_events_args
/system/core/adb/
adb.cpp
811
const DWORD
wait_result
= WaitForMultipleObjects(arraysize(threads),
local
813
if (
wait_result
== WAIT_TIMEOUT) {
829
if (
wait_result
!= WAIT_OBJECT_0) {
831
wait_result
, android::base::SystemErrorCodeToString(GetLastError()).c_str());
[
all
...]
Completed in 3016 milliseconds