/external/compiler-rt/test/msan/ |
D | pthread_setcancelstate.cc | 9 int oldtype; in main() local 14 res = pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); in main() 16 __msan_check_mem_is_initialized(&oldtype, sizeof(oldtype)); in main()
|
/external/llvm-project/compiler-rt/test/msan/ |
D | pthread_setcancelstate.cpp | 9 int oldtype; in main() local 14 res = pthread_setcanceltype(PTHREAD_CANCEL_DEFERRED, &oldtype); in main() 16 __msan_check_mem_is_initialized(&oldtype, sizeof(oldtype)); in main()
|
/external/python/cpython2/Python/ |
D | errors.c | 28 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_Restore() local 39 oldtype = tstate->curexc_type; in PyErr_Restore() 47 Py_XDECREF(oldtype); in PyErr_Restore()
|
/external/python/cpython3/Python/ |
D | errors.c | 43 PyObject *oldtype, *oldvalue, *oldtraceback; in _PyErr_Restore() local 54 oldtype = tstate->curexc_type; in _PyErr_Restore() 62 Py_XDECREF(oldtype); in _PyErr_Restore() 462 PyObject *oldtype, *oldvalue, *oldtraceback; in PyErr_SetExcInfo() local 465 oldtype = tstate->exc_info->exc_type; in PyErr_SetExcInfo() 473 Py_XDECREF(oldtype); in PyErr_SetExcInfo()
|
/external/icu/icu4c/source/tools/tzcode/ |
D | tz2icu.cpp | 1274 ZoneType oldtype = types[i->type]; in optimizeTypeList() local 1275 SimplifiedZoneType newtype(oldtype); in optimizeTypeList() 1322 ZoneType oldtype = types[i->type]; in optimizeTypeList() local 1323 SimplifiedZoneType newtype(oldtype); in optimizeTypeList()
|
/external/selinux/libsepol/src/ |
D | expand.c | 1686 uint32_t oldtype = 0; in expand_terule_helper() local 1720 oldtype = avdatump->data; in expand_terule_helper() 1722 oldtype = avdatump->data; in expand_terule_helper() 1724 oldtype = avdatump->data; in expand_terule_helper() 1727 if (oldtype == remapped_data) { in expand_terule_helper() 1740 p->p_type_val_to_name[oldtype - 1]); in expand_terule_helper() 1748 p->p_type_val_to_name[oldtype - 1], in expand_terule_helper()
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 6392 PyObject *oldtype = NULL, *newtype = NULL, *refcnt = NULL; in heapctypesubclasswithfinalizer_finalize() local 6401 oldtype = PyObject_GetAttrString(m, "HeapCTypeSubclassWithFinalizer"); in heapctypesubclasswithfinalizer_finalize() 6403 if (oldtype == NULL || newtype == NULL) { in heapctypesubclasswithfinalizer_finalize() 6410 refcnt = PyLong_FromSsize_t(Py_REFCNT(oldtype)); in heapctypesubclasswithfinalizer_finalize() 6414 if (PyObject_SetAttrString(oldtype, "refcnt_in_del", refcnt) < 0) { in heapctypesubclasswithfinalizer_finalize() 6427 Py_XDECREF(oldtype); in heapctypesubclasswithfinalizer_finalize()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 5530 INTERCEPTOR(int, pthread_setcanceltype, int type, int *oldtype) { 5532 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcanceltype, type, oldtype); 5533 int res = REAL(pthread_setcanceltype)(type, oldtype); 5535 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldtype, sizeof(*oldtype));
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors.inc | 6505 INTERCEPTOR(int, pthread_setcanceltype, int type, int *oldtype) { 6507 COMMON_INTERCEPTOR_ENTER(ctx, pthread_setcanceltype, type, oldtype); 6508 int res = REAL(pthread_setcanceltype)(type, oldtype); 6509 if (res == 0 && oldtype != nullptr) 6510 COMMON_INTERCEPTOR_WRITE_RANGE(ctx, oldtype, sizeof(*oldtype));
|