Searched refs:cid (Results 1 - 25 of 79) sorted by relevance

1234

/macosx-10.10.1/xnu-2782.1.97/libsyscall/wrappers/
H A Dcoalition.c31 int __coalition(uint32_t operation, uint64_t *cid, uint32_t flags);
32 int __coalition_info(uint32_t operation, uint64_t *cid, void *buffer, size_t bufsize);
39 int coalition_terminate(uint64_t cid, uint32_t flags) argument
41 return __coalition(COALITION_OP_TERMINATE, &cid, flags);
44 int coalition_reap(uint64_t cid, uint32_t flags) argument
46 return __coalition(COALITION_OP_REAP, &cid, flags);
49 int coalition_info_resource_usage(uint64_t cid, struct coalition_resource_usage *cru, size_t sz) argument
51 return __coalition_info(COALITION_INFO_RESOURCE_USAGE, &cid, cru, &sz);
/macosx-10.10.1/apache-793/httpd/modules/arch/win32/
H A Dmod_isapi.c488 static int APR_THREAD_FUNC regfnGetServerVariable(isapi_cid *cid, argument
493 request_rec *r = cid->r;
590 static int APR_THREAD_FUNC regfnReadClient(isapi_cid *cid, argument
594 request_rec *r = cid->r;
625 static apr_ssize_t send_response_header(isapi_cid *cid, argument
689 newstat = apr_palloc(cid->r->pool, statlen + 9);
704 head = apr_pstrndup(cid->r->pool, head, headlen);
714 old_status = cid->r->status;
717 res = ap_scan_script_header_err_strs_ex(cid->r, NULL,
721 res = ap_scan_script_header_err_strs_ex(cid
807 regfnWriteClient(isapi_cid *cid, void *buf_ptr, apr_uint32_t *size_arg, apr_uint32_t flags) argument
863 regfnServerSupportFunction(isapi_cid *cid, apr_uint32_t HSE_code, void *buf_ptr, apr_uint32_t *buf_size, apr_uint32_t *data_type) argument
1413 isapi_cid *cid; local
[all...]
H A Dmod_isapi.h55 *PFN_GETSERVERVARIABLE)(HCONN cid,
60 *PFN_WRITECLIENT)(HCONN cid,
65 *PFN_READCLIENT)(HCONN cid,
69 *PFN_SERVERSUPPORTFUNCTION)(HCONN cid,
/macosx-10.10.1/ruby-106/ruby/test/openssl/
H A Dtest_ocsp.rb25 cid = OpenSSL::OCSP::CertificateId.new(@cert, @ca_cert)
26 assert_kind_of OpenSSL::OCSP::CertificateId, cid
27 assert_equal @cert.serial, cid.serial
31 cid = OpenSSL::OCSP::CertificateId.new(@cert, @ca_cert, OpenSSL::Digest::SHA256.new)
32 assert_kind_of OpenSSL::OCSP::CertificateId, cid
33 assert_equal @cert.serial, cid.serial
38 cid = OpenSSL::OCSP::CertificateId.new(@cert, @ca_cert, OpenSSL::Digest::SHA1.new)
39 request.add_certid(cid)
43 assert_equal cid.serial, request.certid.first.serial
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dsys_coalition.c31 uint64_t cid; local
47 cid = coalition_id(coal);
50 printf("%s(addr, %u) -> %llu\n", __func__, flags, cid);
52 error = copyout(&cid, cidp, sizeof(cid));
76 uint64_t cid; local
83 error = copyin(cidp, &cid, sizeof(cid));
88 coal = coalition_find_by_id(cid);
110 printf("%s(%llu, %u) -> %d\n", __func__, cid, flag
138 uint64_t cid; local
243 uint64_t cid; local
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/url/
H A Durl-cid.el1 ;;; url-cid.el --- Content-ID URL loader
31 (defun url-cid-gnus (cid)
36 (setq part (mm-get-content-id cid))
38 (message "Unknown CID encountered: %s" cid)
55 (defun url-cid (url)
60 (set-buffer (generate-new-buffer " *url-cid*"))
61 (url-cid-gnus (url-filename url))))
66 ;;; url-cid.el ends here
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dcoalition.h44 int coalition_terminate(uint64_t cid, uint32_t flags);
45 int coalition_reap(uint64_t cid, uint32_t flags);
61 int coalition_info_resource_usage(uint64_t cid, struct coalition_resource_usage *cru, size_t sz);
/macosx-10.10.1/OpenSSL098-52/src/crypto/ocsp/
H A Docsp_lib.c106 OCSP_CERTID *cid = NULL; local
109 if (!(cid = OCSP_CERTID_new())) goto err;
111 alg = cid->hashAlgorithm;
123 if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i))) goto err;
128 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
132 ASN1_INTEGER_free(cid->serialNumber);
133 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
135 return cid;
139 if (cid) OCSP_CERTID_free(cid);
[all...]
H A Docsp_vfy.c68 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid, STACK_OF(OCSP_SINGLERESP) *sresp);
263 OCSP_CERTID *tmpid, *cid; local
273 cid = sk_OCSP_SINGLERESP_value(sresp, 0)->certId;
281 if (OCSP_id_issuer_cmp(cid, tmpid))
285 cid->hashAlgorithm->algorithm))
293 *ret = cid;
298 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid, argument
302 if(cid)
308 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
315 if ((cid
[all...]
H A Docsp_srv.c89 ASN1_INTEGER **pserial, OCSP_CERTID *cid)
91 if (!cid) return 0;
92 if (pmd) *pmd = cid->hashAlgorithm->algorithm;
93 if(piNameHash) *piNameHash = cid->issuerNameHash;
94 if (pikeyHash) *pikeyHash = cid->issuerKeyHash;
95 if (pserial) *pserial = cid->serialNumber;
125 OCSP_CERTID *cid,
151 if(!(single->certId = OCSP_CERTID_dup(cid)))
87 OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd, ASN1_OCTET_STRING **pikeyHash, ASN1_INTEGER **pserial, OCSP_CERTID *cid) argument
124 OCSP_basic_add1_status(OCSP_BASICRESP *rsp, OCSP_CERTID *cid, int status, int reason, ASN1_TIME *revtime, ASN1_TIME *thisupd, ASN1_TIME *nextupd) argument
H A Docsp_ext.c426 OCSP_CRLID *cid = NULL; local
428 if (!(cid = OCSP_CRLID_new())) goto err;
431 if (!(cid->crlUrl = ASN1_IA5STRING_new())) goto err;
432 if (!(ASN1_STRING_set(cid->crlUrl, url, -1))) goto err;
436 if (!(cid->crlNum = ASN1_INTEGER_new())) goto err;
437 if (!(ASN1_INTEGER_set(cid->crlNum, *n))) goto err;
441 if (!(cid->crlTime = ASN1_GENERALIZEDTIME_new())) goto err;
442 if (!(ASN1_GENERALIZEDTIME_set_string(cid->crlTime, tim)))
447 if (!(ASN1_STRING_encode_of(OCSP_CRLID,x->value,i2d_OCSP_CRLID,cid,
450 OCSP_CRLID_free(cid);
[all...]
H A Docsp_prn.c139 OCSP_CERTID* cid = NULL; local
157 cid = one->reqCert;
158 ocsp_certid_print(bp, cid, 8);
185 OCSP_CERTID *cid = NULL; local
235 cid = single->certId;
236 if(ocsp_certid_print(bp, cid, 4) <= 0) goto err;
/macosx-10.10.1/BerkeleyDB-21/db/test/
H A Denv004.tcl27 set cid [open $testdir/DB_CONFIG w]
28 puts $cid "set_data_dir ."
29 puts $cid "set_data_dir data1"
30 puts $cid "set_data_dir data2"
31 puts $cid "set_data_dir data3"
32 close $cid
H A Denv002.tcl151 set cid [open $testdir/DB_CONFIG w]
152 puts $cid "set_data_dir ."
153 puts $cid "set_lg_dir $logdir"
154 close $cid
H A Denv003.tcl144 set cid [open $testdir/DB_CONFIG w]
145 puts $cid "set_data_dir ."
146 puts $cid "set_tmp_dir $tmpdir"
147 close $cid
H A Denv016.tcl132 set cid [open $dir/DB_CONFIG w]
133 puts $cid "$carg $cval"
134 close $cid
H A Drep050.tcl169 set cid 2
182 set mid $cid
183 set cid $tmp
217 replclear $cid
252 set mid $cid
253 set cid $tmp
287 set mid $cid
288 set cid $tmp
H A Dbackup.tcl220 set cid [open $testdir/DB_CONFIG w]
221 puts $cid "set_lg_dir logs"
222 puts $cid "set_data_dir data1"
223 close $cid
H A Drep013.tcl160 set cid 2
213 replclear $cid
225 set mid $cid
226 set cid $tmp
232 puts "\tRep$tnum.d.$i: Swap: master $mid, client $cid"
H A Drep035.tcl165 set cid 2
187 set envlist "{$masterenv $mid} {$clientenv $cid} {$env3 3}"
194 replclear $cid
207 set mid $cid
208 set cid $tmp
214 puts "\tRep$tnum.e.$i: Swap: master $mid, client $cid"
217 set envlist "{$masterenv $mid} {$clientenv $cid} {$env3 3}"
/macosx-10.10.1/bootp-298/IPConfiguration.bproj/
H A DDHCPLease.h81 uint8_t cid_type, const void * cid, int cid_length);
109 uint8_t cid_type, const void * cid, int cid_length);
113 uint8_t cid_type, const void * cid, int cid_length);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dfrontend.c136 int cid; local
138 if ( slap_find_control_id( slap_known_controls[ i ], &cid )
145 frontendDB->bd_info->bi_ctrls[ cid ] = 1;
146 frontendDB->be_ctrls[ cid ] = 1;
/macosx-10.10.1/Libnotify-133.1.1/
H A Dlibnotify.c49 uint64_t cid; local
51 cid = pid;
52 cid <<= 32;
53 cid |= token;
55 return cid;
132 uint64_t cid = make_client_id(pid, token); local
137 c = _nc_table_find_64(ns->client_table, cid);
145 c->client_id = cid;
149 _nc_table_insert_64(ns->client_table, cid, c);
157 uint64_t cid; local
678 _internal_cancel(notify_state_t *ns, uint64_t cid) argument
702 uint64_t cid; local
717 uint64_t cid; local
739 uint64_t cid; local
965 uint64_t cid; local
1009 uint64_t cid; local
1043 uint64_t cid; local
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dscache.c45 sqlite_uint64 cid; member in struct:krb5_scache
98 "DELETE FROM credentials WHERE cid=old.oid;" \
111 "cid INTEGER NOT NULL," \
124 #define SQL_ICRED "INSERT INTO credentials (cid, kvno, etype, cred, created_at) VALUES (?,?,?,?,?)"
125 #define SQL_DCRED "DELETE FROM credentials WHERE cid=?"
306 s->cid = SCACHE_INVALID_CID;
376 s->cid = sqlite3_last_insert_rowid(s->db);
527 s->cid = sqlite3_column_int(s->scache_name, 0);
529 s->cid = SCACHE_INVALID_CID;
573 if (s->cid
[all...]
/macosx-10.10.1/MITKerberosShim-66/test/
H A Dtest-gss-client.c376 gss_cred_id_t *cid; local
381 cid = malloc(sizeof(gss_cred_id_t));
382 *cid = GSS_C_NO_CREDENTIAL;
383 majorStatus = gss_release_cred(&minorStatus, cid);

Completed in 614 milliseconds

1234