Home
last modified time | relevance | path

Searched refs:waitp (Results 1 – 13 of 13) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/
Dmutex.cc772 return x->waitp->how == y->waitp->how && x->priority == y->priority && in MuEquivalentWaiter()
773 Condition::GuaranteedEqual(x->waitp->cond, y->waitp->cond); in MuEquivalentWaiter()
868 static void CondVarEnqueue(SynchWaitParams *waitp);
890 SynchWaitParams *waitp, intptr_t mu, int flags) { in Enqueue() argument
893 if (waitp->cv_word != nullptr) { in Enqueue()
894 CondVarEnqueue(waitp); in Enqueue()
898 PerThreadSynch *s = waitp->thread; in Enqueue()
900 s->waitp == nullptr || // normal case in Enqueue()
901 s->waitp == waitp || // Fer()---transfer from condition variable in Enqueue()
904 s->waitp = waitp; in Enqueue()
[all …]
Dmutex.h465 void LockSlowLoop(SynchWaitParams *waitp, int flags);
473 void UnlockSlow(SynchWaitParams *waitp) ABSL_ATTRIBUTE_COLD;
/third_party/curl/lib/
Dhostasyn.c118 int *waitp) in Curl_getaddrinfo() argument
120 return Curl_resolver_getaddrinfo(data, hostname, port, waitp); in Curl_getaddrinfo()
Dhostip6.c101 int *waitp) in Curl_getaddrinfo() argument
113 *waitp = 0; /* synchronous response only */ in Curl_getaddrinfo()
Dhostip4.c92 int *waitp) in Curl_getaddrinfo() argument
100 *waitp = 0; /* synchronous response only */ in Curl_getaddrinfo()
Dasyn-thread.c888 int *waitp) in Curl_resolver_getaddrinfo() argument
892 *waitp = 0; /* default to synchronous response */ in Curl_resolver_getaddrinfo()
898 *waitp = 1; /* expect asynchronous response */ in Curl_resolver_getaddrinfo()
915 int *waitp) in Curl_resolver_getaddrinfo() argument
921 *waitp = 0; /* default to synchronous response */ in Curl_resolver_getaddrinfo()
941 *waitp = 1; /* expect asynchronous response */ in Curl_resolver_getaddrinfo()
Dasyn.h161 int *waitp);
Ddoh.h82 int *waitp);
Dasyn-ares.c768 int *waitp) in Curl_resolver_getaddrinfo() argument
772 *waitp = 0; /* default to synchronous response */ in Curl_resolver_getaddrinfo()
839 *waitp = 1; /* expect asynchronous response */ in Curl_resolver_getaddrinfo()
Dhostip.h124 int *waitp);
Ddoh.c368 int *waitp) in Curl_doh() argument
374 *waitp = FALSE; in Curl_doh()
414 *waitp = TRUE; /* this never returns synchronously */ in Curl_doh()
/third_party/skia/third_party/externals/abseil-cpp/absl/base/internal/
Dthread_identity.h123 SynchWaitParams* waitp; member
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/
Dcreate_thread_identity.cc79 pts->waitp = nullptr; in ResetThreadIdentity()