/third_party/libnl/python/netlink/genl/ |
D | capi.i | 82 PyObject *pobj; in py_genlmsg_parse() local 89 pobj = PyList_GetItem(p, 0); in py_genlmsg_parse() 90 err = SWIG_ConvertPtr(pobj, &pol, SWIGTYPE_p_nla_policy, 0 | 0 ); in py_genlmsg_parse()
|
/third_party/boringssl/src/crypto/x509v3/ |
D | v3_cpols.c | 147 ASN1_OBJECT *pobj; variable 188 if (!(pobj = OBJ_txt2obj(cnf->name, 0))) { 196 ASN1_OBJECT_free(pobj); 199 pol->policyid = pobj; 227 ASN1_OBJECT *pobj; in policy_section() local 228 if (!(pobj = OBJ_txt2obj(cnf->value, 0))) { in policy_section() 233 pol->policyid = pobj; in policy_section()
|
/third_party/openssl/crypto/x509v3/ |
D | v3_cpols.c | 94 ASN1_OBJECT *pobj; variable 139 if ((pobj = OBJ_txt2obj(cnf->name, 0)) == NULL) { 147 ASN1_OBJECT_free(pobj); 151 pol->policyid = pobj; 180 ASN1_OBJECT *pobj; in policy_section() local 181 if ((pobj = OBJ_txt2obj(cnf->value, 0)) == NULL) { in policy_section() 187 pol->policyid = pobj; in policy_section()
|
/third_party/boringssl/src/crypto/x509/ |
D | x509_lu.c | 641 X509_OBJECT obj, *pobj; in X509_STORE_CTX_get1_issuer() local 662 pobj = sk_X509_OBJECT_value(ctx->ctx->objs, i); in X509_STORE_CTX_get1_issuer() 664 if (pobj->type != X509_LU_X509) in X509_STORE_CTX_get1_issuer() 666 if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509))) in X509_STORE_CTX_get1_issuer() 668 if (ctx->check_issued(ctx, x, pobj->data.x509)) { in X509_STORE_CTX_get1_issuer() 669 *issuer = pobj->data.x509; in X509_STORE_CTX_get1_issuer() 670 X509_OBJECT_up_ref_count(pobj); in X509_STORE_CTX_get1_issuer()
|
/third_party/openssl/crypto/x509/ |
D | x509_lu.c | 680 X509_OBJECT *obj = X509_OBJECT_new(), *pobj = NULL; in X509_STORE_CTX_get1_issuer() local 718 pobj = sk_X509_OBJECT_value(store->objs, i); in X509_STORE_CTX_get1_issuer() 720 if (pobj->type != X509_LU_X509) in X509_STORE_CTX_get1_issuer() 722 if (X509_NAME_cmp(xn, X509_get_subject_name(pobj->data.x509))) in X509_STORE_CTX_get1_issuer() 724 if (ctx->check_issued(ctx, x, pobj->data.x509)) { in X509_STORE_CTX_get1_issuer() 725 *issuer = pobj->data.x509; in X509_STORE_CTX_get1_issuer()
|
/third_party/libwebsockets/lib/core-net/ |
D | lws-dsh.c | 384 lws_dsh_free(void **pobj) in lws_dsh_free() argument 386 lws_dsh_obj_t *_o = (lws_dsh_obj_t *)((uint8_t *)(*pobj) - sizeof(*_o)), in lws_dsh_free() 399 *pobj = NULL; in lws_dsh_free()
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes_test.c | 1024 static IUnknown *pobj; in KeepObject() local 1027 if (pobj) in KeepObject() 1028 pobj->lpVtbl->Release(pobj); in KeepObject() 1029 pobj = punk; in KeepObject()
|
/third_party/libdrm/nouveau/ |
D | nouveau.c | 288 struct nouveau_object **pobj) in nouveau_object_new() argument 302 *pobj = obj; in nouveau_object_new() 307 nouveau_object_del(struct nouveau_object **pobj) in nouveau_object_del() argument 309 struct nouveau_object *obj = *pobj; in nouveau_object_del() 313 *pobj = NULL; in nouveau_object_del()
|
/third_party/python/Objects/ |
D | complexobject.c | 439 to_complex(PyObject **pobj, Py_complex *pc) in to_complex() argument 441 PyObject *obj = *pobj; in to_complex() 447 *pobj = NULL; in to_complex() 457 *pobj = Py_NotImplemented; in to_complex()
|
/third_party/libnl/python/netlink/ |
D | capi.i | 870 PyObject *pobj; in py_nla_parse_nested() local 877 pobj = PyList_GetItem(p, 0); in py_nla_parse_nested() 878 err = SWIG_ConvertPtr(pobj, &pol, SWIGTYPE_p_nla_policy, 0 | 0 ); in py_nla_parse_nested()
|
/third_party/python/Modules/ |
D | socketmodule.c | 6504 PyObject *pobj = (PyObject *)NULL; local 6515 kwnames, &hobj, &pobj, &family, &socktype, 6534 if (PyLong_CheckExact(pobj)) { 6535 long value = PyLong_AsLong(pobj); 6540 } else if (PyUnicode_Check(pobj)) { 6541 pptr = PyUnicode_AsUTF8(pobj); 6544 } else if (PyBytes_Check(pobj)) { 6545 pptr = PyBytes_AS_STRING(pobj); 6546 } else if (pobj == Py_None) { 6563 hobj, pobj, family, socktype, protocol) < 0) {
|