Home
last modified time | relevance | path

Searched refs:check_id (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Modules/clinic/
D_lzmamodule.c.h173 _lzma_is_check_supported_impl(PyObject *module, int check_id);
179 int check_id; in _lzma_is_check_supported() local
181 if (!PyArg_Parse(arg, "i:is_check_supported", &check_id)) { in _lzma_is_check_supported()
184 return_value = _lzma_is_check_supported_impl(module, check_id); in _lzma_is_check_supported()
/external/ltp/testcases/commands/unshare/
Dunshare01.sh82 check_id() function
146 check_id "$(cat temp)" "${exp_result}" "${unshare_cmd}"
/external/python/cpython3/Python/
Dpythonrun.c858 PyObject *check_id = NULL; in print_exception_recursive() local
862 check_id = PyLong_FromVoidPtr(cause); in print_exception_recursive()
863 if (check_id == NULL) { in print_exception_recursive()
866 res = PySet_Contains(seen, check_id); in print_exception_recursive()
867 Py_DECREF(check_id); in print_exception_recursive()
880 check_id = PyLong_FromVoidPtr(context); in print_exception_recursive()
881 if (check_id == NULL) { in print_exception_recursive()
884 res = PySet_Contains(seen, check_id); in print_exception_recursive()
885 Py_DECREF(check_id); in print_exception_recursive()
/external/python/cpython3/Modules/
D_lzmamodule.c1321 _lzma_is_check_supported_impl(PyObject *module, int check_id) in _lzma_is_check_supported_impl() argument
1324 return PyBool_FromLong(lzma_check_is_supported(check_id)); in _lzma_is_check_supported_impl()
/external/boringssl/src/crypto/x509/
Dx509_vfy.c120 static int check_id(X509_STORE_CTX *ctx);
475 ok = check_id(ctx); in X509_verify_cert()
780 static int check_id(X509_STORE_CTX *ctx) in check_id() function