HomeSort by relevance Sort by last modified time
    Searched refs:cid (Results 1 - 25 of 121) sorted by null

1 2 3 4 5

  /external/nist-sip/java/gov/nist/javax/sip/header/
CallIdentifier.java 75 * @param cid String to set
76 * @throws IllegalArgumentException if cid is null or is not a token,
79 public CallIdentifier(String cid) throws IllegalArgumentException {
80 setCallID(cid);
156 * @param cid Strimg to set
157 * @throws IllegalArgumentException if cid is null or is not a token or
160 public void setCallID(String cid) throws IllegalArgumentException {
161 if (cid == null)
163 int index = cid.indexOf('@');
165 localId = cid;
    [all...]
CallID.java 111 * @param cid String to set. This is the body part of the Call-Id
113 * @throws IllegalArgumentException if cid is null, not a token, or is
116 public void setCallId(String cid) throws ParseException {
118 callIdentifier = new CallIdentifier(cid);
120 throw new ParseException(cid, 0);
126 * @param cid CallIdentifier to set (localId@host).
128 public void setCallIdentifier(CallIdentifier cid) {
129 callIdentifier = cid;
InReplyTo.java 60 * @param cid CallIdentifier to set
62 public InReplyTo(CallIdentifier cid) {
64 callId = cid;
  /external/chromium_org/third_party/boringssl/src/crypto/x509v3/
pcy_data.c 88 const ASN1_OBJECT *cid, int crit)
92 if (!policy && !cid)
94 if (cid)
96 id = OBJ_dup(cid);
  /external/openssl/crypto/x509v3/
pcy_data.c 86 const ASN1_OBJECT *cid, int crit)
90 if (!policy && !cid)
92 if (cid)
94 id = OBJ_dup(cid);
  /external/openssl/crypto/ocsp/
ocsp_lib.c 107 OCSP_CERTID *cid = NULL; local
110 if (!(cid = OCSP_CERTID_new())) goto err;
112 alg = cid->hashAlgorithm;
124 if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i))) goto err;
130 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
134 ASN1_INTEGER_free(cid->serialNumber);
135 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
137 return cid;
141 if (cid) OCSP_CERTID_free(cid);
    [all...]
ocsp_vfy.c 68 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,
302 if(cid)
308 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
317 if ((cid->issuerNameHash->length != mdlen) |
    [all...]
ocsp_srv.c 89 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)))
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_cmd.c 168 cmd->cid = swc->cid;
202 cmd->cid = swc->cid;
583 cmd->cid = swc->cid;
644 cmd->cid = swc->cid;
686 cmd->cid = swc->cid;
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_cmd.c 168 cmd->cid = swc->cid;
202 cmd->cid = swc->cid;
583 cmd->cid = swc->cid;
644 cmd->cid = swc->cid;
686 cmd->cid = swc->cid;
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
40 /* CID Fonts */
43 /* CID-keyed font specific API. */
46 /* This section contains the declaration of CID-keyed font specific */
59 * "R/O/S") from a CID-keyed font.
79 * This function only works with CID faces, returning an error
98 * Retrieve the type of the input face, CID keyed or not. In
100 * successfully also for CID-keyed fonts in an SNFT wrapper.
114 * This function only works with CID faces and OpenType fonts,
131 * Retrieve the CID of the input glyph index
    [all...]
  /external/freetype/include/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
40 /* CID Fonts */
43 /* CID-keyed font specific API. */
46 /* This section contains the declaration of CID-keyed font specific */
59 * "R/O/S") from a CID-keyed font.
79 * This function only works with CID faces, returning an error
98 * Retrieve the type of the input face, CID keyed or not. In
100 * successfully also for CID-keyed fonts in an SNFT wrapper.
114 * This function only works with CID faces and OpenType fonts,
131 * Retrieve the CID of the input glyph index
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
Join.java 90 * @param cid String to set. This is the body part of the Call-Id
92 * @throws IllegalArgumentException if cid is null, not a token, or is
95 public void setCallId(String cid) {
96 callId = cid;
101 * @param cid CallIdentifier to set (localId@host).
103 public void setCallIdentifier(CallIdentifier cid) {
104 callIdentifier = cid;
Replaces.java 90 * @param cid String to set. This is the body part of the Call-Id
92 * @throws IllegalArgumentException if cid is null, not a token, or is
95 public void setCallId(String cid) {
96 callId = cid;
101 * @param cid CallIdentifier to set (localId@host).
103 public void setCallIdentifier(CallIdentifier cid) {
104 callIdentifier = cid;
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_api.c 209 ** Returns the CID of the connection, or 0 if it failed to start
230 ** Returns the CID of the connection, or 0 if it failed to start
323 L2CAP_TRACE_API ("L2CAP - L2CA_conn_req(psm: 0x%04x) returned CID: 0x%04x", psm, p_ccb->local_cid);
325 /* Return the local CID as our handle */
365 L2CAP_TRACE_API ("L2CA_ErtmConnectRsp() CID: 0x%04x Result: %d Status: %d BDA: %08x%04x p_ertm_info:0x%08x",
444 BOOLEAN L2CA_ConfigReq (UINT16 cid, tL2CAP_CFG_INFO *p_cfg)
448 L2CAP_TRACE_API ("L2CA_ConfigReq() CID 0x%04x: fcr_present:%d (mode %d) mtu_present:%d (%d)",
449 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu);
452 if ((p_ccb = l2cu_find_ccb_by_cid (NULL, cid)) == NULL)
454 L2CAP_TRACE_WARNING ("L2CAP - no CCB for L2CA_cfg_req, CID: %d", cid)
    [all...]
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_clock_test.cc 251 unsigned cid = rand() % kClocks; local
258 printf("acquire thr%d <- clk%d\n", tid, cid);
259 thr0[tid]->acquire(sync0[cid]);
260 thr1[tid]->acquire(sync1[cid]);
264 printf("release thr%d -> clk%d\n", tid, cid);
265 thr0[tid]->release(sync0[cid]);
266 thr1[tid]->release(sync1[cid]);
270 printf("acq_rel thr%d <> clk%d\n", tid, cid);
271 thr0[tid]->acq_rel(sync0[cid]);
272 thr1[tid]->acq_rel(sync1[cid]);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
svga3d_reg.h 1212 uint32 cid; member in struct:__anon18620
1217 uint32 cid; member in struct:__anon18621
1222 uint32 cid; member in struct:__anon18622
1313 uint32 cid; member in struct:__anon18630
1319 uint32 cid; member in struct:__anon18631
1537 uint32 cid; member in struct:__anon18642
1567 uint32 cid; member in struct:__anon18645
1573 uint32 cid; member in struct:__anon18646
1586 uint32 cid; member in struct:__anon18648
1601 uint32 cid; member in struct:__anon18650
1608 uint32 cid; member in struct:__anon18651
1615 uint32 cid; member in struct:__anon18652
1622 uint32 cid; member in struct:__anon18653
1628 uint32 cid; member in struct:__anon18654
1634 uint32 cid; member in struct:__anon18655
1641 uint32 cid; member in struct:__anon18656
1649 uint32 cid; member in struct:__anon18657
1656 uint32 cid; member in struct:__anon18658
1665 uint32 cid; member in struct:__anon18659
1672 uint32 cid; member in struct:__anon18660
1678 uint32 cid; member in struct:__anon18661
1685 uint32 cid; \/* Same parameters passed to END_QUERY *\/ member in struct:__anon18662
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga3d_reg.h 1212 uint32 cid; member in struct:__anon6958
1217 uint32 cid; member in struct:__anon6959
1222 uint32 cid; member in struct:__anon6960
1313 uint32 cid; member in struct:__anon6968
1319 uint32 cid; member in struct:__anon6969
1537 uint32 cid; member in struct:__anon6980
1567 uint32 cid; member in struct:__anon6983
1573 uint32 cid; member in struct:__anon6984
1586 uint32 cid; member in struct:__anon6986
1601 uint32 cid; member in struct:__anon6988
1608 uint32 cid; member in struct:__anon6989
1615 uint32 cid; member in struct:__anon6990
1622 uint32 cid; member in struct:__anon6991
1628 uint32 cid; member in struct:__anon6992
1634 uint32 cid; member in struct:__anon6993
1641 uint32 cid; member in struct:__anon6994
1649 uint32 cid; member in struct:__anon6995
1656 uint32 cid; member in struct:__anon6996
1665 uint32 cid; member in struct:__anon6997
1672 uint32 cid; member in struct:__anon6998
1678 uint32 cid; member in struct:__anon6999
1685 uint32 cid; \/* Same parameters passed to END_QUERY *\/ member in struct:__anon7000
    [all...]
  /external/bluetooth/bluedroid/stack/include/
l2c_api.h 36 ** HCI type(1), len(2), handle(2), L2CAP len(2) and CID(2) => 9
85 /* special CID for Multi-AV for reporting congestion */
183 ** Local CID assigned to the connection
191 ** Local CID
198 ** Local CID
204 ** Local CID assigned to the connection
211 ** Local CID assigned to the connection
218 ** Local CID
225 ** Local CID
238 ** Local CID
    [all...]
  /external/chromium_org/chrome/browser/resources/cryptotoken/
hidgnubbydevice.js 52 // Use magic CID 0 to address all.
54 0, 0, 0, 0, // broadcast CID
102 '[' + client.cid.toString(16) + '] left?'));
211 * @param {number} cid Channel id
216 HidGnubbyDevice.prototype.checkLock_ = function(cid, cmd) {
219 if (this.lockCID != cid) {
226 [(cid >> 24) & 255,
227 (cid >> 16) & 255,
228 (cid >> 8) & 255,
229 cid & 255
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_fake_stack_test.cc 112 for (uptr cid = 0; cid < FakeStack::kNumberOfSizeClasses; cid++) {
113 uptr n = FakeStack::NumberOfFrames(stack_size_log, cid);
114 uptr bytes_in_class = FakeStack::BytesInSizeClass(cid);
116 FakeFrame *ff = fs->Allocate(stack_size_log, cid, 0);
118 EXPECT_TRUE(s.insert(std::make_pair(ff, cid)).second);
125 EXPECT_EQ(0UL, fs->Allocate(stack_size_log, cid, 0));
  /external/chromium_org/third_party/freetype/include/freetype/internal/services/
svcid.h 5 /* The FreeType CID font services (specification). */
27 #define FT_SERVICE_ID_CID "CID"
40 FT_UInt *cid );
42 FT_DEFINE_SERVICE( CID )
  /external/chromium_org/third_party/freetype/src/cff/
cffload.h 59 FT_UInt cid );
  /external/freetype/include/internal/services/
svcid.h 5 /* The FreeType CID font services (specification). */
27 #define FT_SERVICE_ID_CID "CID"
40 FT_UInt *cid );
42 FT_DEFINE_SERVICE( CID )
  /external/freetype/src/cff/
cffload.h 59 FT_UInt cid );

Completed in 698 milliseconds

1 2 3 4 5