/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/ |
D | thread_pthrd_test.cpp | 238 int oldstate; variable 239 EXPECT_EQ(0, pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate)); 240 EXPECT_EQ(oldstate, PTHREAD_CANCEL_ENABLE); 242 EXPECT_EQ(0, pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &oldstate)); 243 EXPECT_EQ(oldstate, PTHREAD_CANCEL_DISABLE); 245 EXPECT_EQ(0, pthread_setcancelstate(PTHREAD_CANCEL_MASKED, &oldstate)); 246 EXPECT_EQ(oldstate, PTHREAD_CANCEL_ENABLE); 248 EXPECT_EQ(0, pthread_setcancelstate(PTHREAD_CANCEL_DEFERRED, &oldstate)); 249 EXPECT_EQ(oldstate, PTHREAD_CANCEL_MASKED); 251 EXPECT_EQ(0, pthread_setcancelstate(PTHREAD_CANCEL_ASYNCHRONOUS, &oldstate)); [all …]
|
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/ |
D | testfrmw.c | 47 int oldstate; in output() local 49 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate); in output() 62 pthread_setcancelstate(oldstate, NULL); in output()
|
/third_party/musl/src/thread/ |
D | pthread_cond_timedwait.c | 65 int e, seq, clock = c->_c_clock, cs, shared=0, oldstate, tmp; in __pthread_cond_timedwait() local 111 oldstate = WAITING; in __pthread_cond_timedwait() 115 oldstate = a_cas(&node.state, WAITING, LEAVING); in __pthread_cond_timedwait() 117 if (oldstate == WAITING) { in __pthread_cond_timedwait() 147 if (oldstate == WAITING) goto done; in __pthread_cond_timedwait()
|
/third_party/musl/porting/linux/user/src/thread/ |
D | pthread_cond_timedwait.c | 65 int e, seq, clock = c->_c_clock, cs, shared=0, oldstate, tmp; in __pthread_cond_timedwait() local 111 oldstate = WAITING; in __pthread_cond_timedwait() 115 oldstate = a_cas(&node.state, WAITING, LEAVING); in __pthread_cond_timedwait() 117 if (oldstate == WAITING) { in __pthread_cond_timedwait() 147 if (oldstate == WAITING) goto done; in __pthread_cond_timedwait()
|
/third_party/toybox/toys/lsb/ |
D | md5sum.c | 98 unsigned oldstate[5]; 179 TT.oldstate[i] = TT.state[i]; in sha1_transform() 211 for (i=0; i<5; i++) TT.state[i] += TT.oldstate[i]; in sha1_transform()
|
/third_party/ffmpeg/compat/ |
D | w32pthreads.h | 186 static inline int pthread_setcancelstate(int state, int *oldstate) in pthread_setcancelstate() argument
|
/third_party/curl/lib/ |
D | socks.c | 170 enum connect_t oldstate = sx->state; in socksstate() local 196 if(oldstate == state) in socksstate() 205 socks_statename[oldstate], socks_statename[sx->state], in socksstate()
|
D | easy.c | 1084 int oldstate; in curl_easy_pause() local 1095 oldstate = k->keepon & (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE); in curl_easy_pause() 1102 if((newstate & (KEEP_RECV_PAUSE| KEEP_SEND_PAUSE)) == oldstate) { in curl_easy_pause()
|
D | multi.c | 147 CURLMstate oldstate = data->mstate; in mstate() local 172 if(oldstate == state) in mstate() 183 multi_statename[oldstate], multi_statename[data->mstate], in mstate()
|
/third_party/libinput/src/ |
D | evdev-mt-touchpad-gestures.c | 798 enum tp_gesture_state oldstate; in tp_gesture_handle_event() local 800 oldstate = tp->gesture.state; in tp_gesture_handle_event() 829 if (oldstate != tp->gesture.state) { in tp_gesture_handle_event() 832 gesture_state_to_str(oldstate), in tp_gesture_handle_event()
|
D | evdev-mt-touchpad.c | 1137 enum touch_palm_state oldstate = t->palm.state; in tp_palm_detect() local 1172 if (oldstate == t->palm.state) in tp_palm_detect()
|
/third_party/lwip/src/netif/ppp/ |
D | ccp.c | 458 int oldstate; in ccp_input() local 463 oldstate = f->state; in ccp_input() 465 if (oldstate == PPP_FSM_OPENED && p[0] == TERMREQ && f->state != PPP_FSM_OPENED) { in ccp_input() 479 if (oldstate == PPP_FSM_REQSENT && p[0] == TERMACK in ccp_input()
|
D | lcp.c | 424 int oldstate; in lcp_close() local 437 oldstate = f->state; in lcp_close() 440 if (oldstate == PPP_FSM_STOPPED && (f->flags & (OPT_PASSIVE|OPT_SILENT|DELAYED_UP))) { in lcp_close()
|
/third_party/python/Python/ |
D | pystate.c | 1533 PyGILState_Release(PyGILState_STATE oldstate) in PyGILState_Release() argument 1561 assert(oldstate == PyGILState_UNLOCKED); in PyGILState_Release() 1572 else if (oldstate == PyGILState_UNLOCKED) in PyGILState_Release()
|
/third_party/NuttX/drivers/usbdev/gadget/ |
D | f_mass_storage.c | 1310 uint32_t oldstate = FMASS_TASK_IDLE; in fmass_main_thread() local 1317 if (oldstate == curstate) in fmass_main_thread() 1328 oldstate = curstate; in fmass_main_thread()
|
/third_party/toybox/generated/ |
D | globals.h | 78 unsigned oldstate[5]; member
|
/third_party/libbpf/.github/actions/build-selftests/ |
D | vmlinux.h | 79029 int oldstate; member
|