/external/compiler-rt/test/msan/ |
D | pthread_setcancelstate.cc | 8 int oldstate; in main() local 10 int res = pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &oldstate); in main() 12 __msan_check_mem_is_initialized(&oldstate, sizeof(oldstate)); in main()
|
/external/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()
|
/external/toybox/toys/lsb/ |
D | md5sum.c | 97 unsigned oldstate[5]; 180 TT.oldstate[i] = TT.state[i]; in sha1_transform() 212 for (i=0; i<5; i++) TT.state[i] += TT.oldstate[i]; in sha1_transform()
|
/external/libxml2/ |
D | relaxng.c | 3052 xmlAutomataStatePtr oldstate = ctxt->state; in xmlRelaxNGCompile() local 3081 ctxt->state = oldstate; in xmlRelaxNGCompile() 3094 xmlAutomataStatePtr oldstate = ctxt->state; in xmlRelaxNGCompile() local 3123 ctxt->state = oldstate; in xmlRelaxNGCompile() 3141 xmlAutomataStatePtr oldstate = ctxt->state; in xmlRelaxNGCompile() local 3148 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state); in xmlRelaxNGCompile() 3152 xmlAutomataStatePtr oldstate; in xmlRelaxNGCompile() local 3156 oldstate = ctxt->state; in xmlRelaxNGCompile() 3162 xmlAutomataNewEpsilon(ctxt->am, ctxt->state, oldstate); in xmlRelaxNGCompile() 3164 xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL); in xmlRelaxNGCompile() [all …]
|
D | valid.c | 676 xmlAutomataStatePtr oldstate = ctxt->state; in xmlValidBuildAContentModel() local 694 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state); in xmlValidBuildAContentModel() 714 xmlAutomataStatePtr oldstate, oldend; in xmlValidBuildAContentModel() local 720 oldstate = ctxt->state; in xmlValidBuildAContentModel() 723 ctxt->state = xmlAutomataNewEpsilon(ctxt->am, oldstate, NULL); in xmlValidBuildAContentModel() 724 oldstate = ctxt->state; in xmlValidBuildAContentModel() 738 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state); in xmlValidBuildAContentModel() 741 xmlAutomataNewEpsilon(ctxt->am, oldstate, ctxt->state); in xmlValidBuildAContentModel() 742 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate); in xmlValidBuildAContentModel() 745 xmlAutomataNewEpsilon(ctxt->am, oldend, oldstate); in xmlValidBuildAContentModel() [all …]
|
D | xmlreader.c | 832 xmlTextReaderState oldstate; in xmlTextReaderPushData() local 838 oldstate = reader->state; in xmlTextReaderPushData() 854 reader->state = oldstate; in xmlTextReaderPushData() 858 reader->state = oldstate; in xmlTextReaderPushData() 859 if ((oldstate != XML_TEXTREADER_START) || in xmlTextReaderPushData() 931 reader->state = oldstate; in xmlTextReaderPushData() 1293 xmlTextReaderState oldstate = XML_TEXTREADER_START; in xmlTextReaderRead() local 1346 oldstate = reader->state; in xmlTextReaderRead() 1365 ((oldstate == XML_TEXTREADER_BACKTRACK) || in xmlTextReaderRead() 1387 if (oldstate != XML_TEXTREADER_BACKTRACK) { in xmlTextReaderRead() [all …]
|
D | xmlschemas.c | 12904 xmlAutomataStatePtr oldstate = pctxt->state; in xmlSchemaBuildAContentModel() local 12912 oldstate, NULL); in xmlSchemaBuildAContentModel() 12913 oldstate = pctxt->state; in xmlSchemaBuildAContentModel() 12927 oldstate, counter); in xmlSchemaBuildAContentModel() 12933 oldstate, pctxt->state); in xmlSchemaBuildAContentModel() 12937 oldstate, NULL); in xmlSchemaBuildAContentModel() 12938 oldstate = pctxt->state; in xmlSchemaBuildAContentModel() 12948 oldstate); in xmlSchemaBuildAContentModel() 12958 oldstate, pctxt->state); in xmlSchemaBuildAContentModel() 12968 oldstate, NULL); in xmlSchemaBuildAContentModel() [all …]
|
D | parser.c | 4231 xmlParserInputState oldstate = ctxt->instate; in xmlParsePubidLiteral() local 4294 ctxt->instate = oldstate; in xmlParsePubidLiteral()
|
/external/bcc/tools/ |
D | tcpstates.py | 283 tcpstate2str(event.oldstate), tcpstate2str(event.newstate), 306 tcpstate2str(event.oldstate), tcpstate2str(event.newstate),
|
/external/python/cpython2/Python/ |
D | pystate.c | 638 PyGILState_Release(PyGILState_STATE oldstate) in PyGILState_Release() argument 661 assert(oldstate == PyGILState_UNLOCKED); in PyGILState_Release() 671 else if (oldstate == PyGILState_UNLOCKED) in PyGILState_Release()
|
/external/u-boot/include/linux/mtd/ |
D | flashchip.h | 72 flstate_t oldstate; member
|
/external/iperf3/src/ |
D | iperf_client_api.c | 296 signed char oldstate = test->state; in iperf_handle_message_client() local 300 test->state = oldstate; in iperf_handle_message_client()
|
D | iperf_server_api.c | 203 signed char oldstate = test->state; in iperf_handle_message_server() local 207 test->state = oldstate; in iperf_handle_message_server()
|
/external/python/cpython3/Python/ |
D | pystate.c | 1088 PyGILState_Release(PyGILState_STATE oldstate) in PyGILState_Release() argument 1111 assert(oldstate == PyGILState_UNLOCKED); in PyGILState_Release() 1121 else if (oldstate == PyGILState_UNLOCKED) in PyGILState_Release()
|
/external/u-boot/drivers/mtd/spi/ |
D | sandbox.c | 249 enum sandbox_sf_state oldstate = sbsf->state; in sandbox_sf_process_cmd() local 304 if (oldstate != sbsf->state) in sandbox_sf_process_cmd()
|
/external/ppp/pppd/ |
D | ccp.c | 448 int oldstate; local 453 oldstate = f->state; 455 if (oldstate == OPENED && p[0] == TERMREQ && f->state != OPENED) { 469 if (oldstate == REQSENT && p[0] == TERMACK
|
D | lcp.c | 400 int oldstate; local 409 oldstate = f->state; 412 if (oldstate == STOPPED && f->flags & (OPT_PASSIVE|OPT_SILENT|DELAYED_UP)) {
|
/external/toybox/generated/ |
D | globals.h | 73 unsigned oldstate[5]; member
|
/external/curl/lib/ |
D | multi.c | 129 CURLMstate oldstate = data->mstate; in mstate() local 156 if(oldstate == state) in mstate() 172 statename[oldstate], statename[data->mstate], in mstate()
|
/external/libcups/cups/ |
D | http.c | 620 http_state_t oldstate; /* Old state */ in httpFlush() local 643 oldstate = http->state; in httpFlush() 653 if (http->state == oldstate && http->state != HTTP_STATE_WAITING && in httpFlush()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 5521 INTERCEPTOR(int, pthread_setcancelstate, int state, int *oldstate) { 5523 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcancelstate, state, oldstate); 5524 int res = REAL(pthread_setcancelstate)(state, oldstate); 5526 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldstate, sizeof(*oldstate));
|
/external/mdnsresponder/mDNSCore/ |
D | uDNS.c | 937 LLQ_State oldstate = q->state; in uDNS_recvLLQResponse() local 948 return (oldstate == LLQ_SecondaryRequest ? uDNS_LLQ_Entire : uDNS_LLQ_Ignore); in uDNS_recvLLQResponse()
|
D | mDNS.c | 5146 mDNSu8 oldstate = m->SPSState; in mDNSCoreMachineSleep() local 5149 if (oldstate == 1) mDNS_DeregisterService(m, &m->SPSRecords); in mDNSCoreMachineSleep()
|