Home
last modified time | relevance | path

Searched refs:oldstate (Results 1 – 17 of 17) sorted by relevance

/third_party/musl/libc-test/src/functionalext/supplement/thread/thread_gtest/
Dthread_pthrd_test.cpp238 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/
Dtestfrmw.c47 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/
Dpthread_cond_timedwait.c65 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/
Dpthread_cond_timedwait.c65 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/
Dmd5sum.c98 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/
Dw32pthreads.h186 static inline int pthread_setcancelstate(int state, int *oldstate) in pthread_setcancelstate() argument
/third_party/curl/lib/
Dsocks.c170 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()
Deasy.c1084 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()
Dmulti.c147 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/
Devdev-mt-touchpad-gestures.c798 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()
Devdev-mt-touchpad.c1137 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/
Dccp.c458 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()
Dlcp.c424 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/
Dpystate.c1533 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/
Df_mass_storage.c1310 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/
Dglobals.h78 unsigned oldstate[5]; member
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h79029 int oldstate; member