/external/boringssl/src/crypto/pkcs8/ |
p5_pbev2.c | 72 ASN1_SIMPLE(PBE2PARAM, keyfunc, X509_ALGOR), 177 /* Setup keyfunc */ 179 X509_ALGOR_free(pbe2->keyfunc); 181 pbe2->keyfunc = PKCS5_pbkdf2_set(iter, salt, saltlen, prf_nid, keylen); 183 if (!pbe2->keyfunc) 226 X509_ALGOR *keyfunc = NULL; local 276 /* Finally setup the keyfunc structure */ 278 keyfunc = X509_ALGOR_new(); 279 if (!keyfunc) 282 keyfunc->algorithm = (ASN1_OBJECT*) OBJ_nid2obj(NID_id_pbkdf2) [all...] |
/external/protobuf/python/google/protobuf/pyext/ |
repeated_composite_container.cc | 86 #define GET_KEY(keyfunc, value) \ 87 ((keyfunc) == NULL ? \ 89 PyObject_CallFunctionObjArgs((keyfunc), (value), NULL)) 117 PyObject* keyfunc) { 135 GET_KEY(keyfunc, PyList_GET_ITEM(children, (start + limit) / 2))); 137 ScopedPyObjectPtr key(GET_KEY(keyfunc, PyList_GET_ITEM(children, left))); 144 ScopedPyObjectPtr key(GET_KEY(keyfunc, 150 key.reset(GET_KEY(keyfunc, PyList_GET_ITEM(children, right - 1))); 156 ScopedPyObjectPtr key(GET_KEY(keyfunc, 177 InternalQuickSort(self, start, right, cmp, keyfunc); 494 PyObject *keyfunc = NULL; local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 487 # keyfunc failure 488 def keyfunc(obj): function in function:TestBasicOps.test_groupby 489 if keyfunc.skip > 0: 490 keyfunc.skip -= 1 495 # keyfunc failure on outer object 496 keyfunc.skip = 0 497 self.assertRaises(ExpectedError, gulp, [None], keyfunc) 498 keyfunc.skip = 1 499 self.assertRaises(ExpectedError, gulp, [None, None], keyfunc) [all...] |
test_builtin.py | 866 "max(1, 2, key=1)", # keyfunc is not callable 912 "min(1, 2, key=1)", # keyfunc is not callable [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
itertools.so | |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_itertools.py | 487 # keyfunc failure 488 def keyfunc(obj): function in function:TestBasicOps.test_groupby 489 if keyfunc.skip > 0: 490 keyfunc.skip -= 1 495 # keyfunc failure on outer object 496 keyfunc.skip = 0 497 self.assertRaises(ExpectedError, gulp, [None], keyfunc) 498 keyfunc.skip = 1 499 self.assertRaises(ExpectedError, gulp, [None, None], keyfunc) [all...] |
test_builtin.py | 866 "max(1, 2, key=1)", # keyfunc is not callable 912 "min(1, 2, key=1)", # keyfunc is not callable [all...] |
/external/boringssl/src/include/openssl/ |
x509.h | 520 X509_ALGOR *keyfunc; member in struct:PBE2PARAM_st [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | [all...] |
/external/clang/lib/AST/ |
ASTContext.cpp | [all...] |