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

1 2 3 4 5 6 7 8 910

  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 71 public static String createSdDir(int sizeMb, String cid, String sdEncKey, int uid,
80 int rc = mountService.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
83 Log.e(TAG, "Failed to create secure container " + cid);
86 String cachePath = mountService.getSecureContainerPath(cid);
87 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
96 public static String mountSdDir(String cid, String key, int ownerUid) {
98 int rc = getMountService().mountSecureContainer(cid, key, ownerUid);
100 Log.i(TAG, "Failed to mount container " + cid + " rc : " + rc);
103 return getMountService().getSecureContainerPath(cid);
110 public static boolean unMountSdDir(String cid) {
    [all...]
  /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/qemu/distrib/sdl-1.2.15/src/video/quartz/
CGS.h 62 extern CGSError CGSGetOnScreenWindowList (CGSConnectionID cid,
68 extern CGSError CGSGetScreenRectForWindow (CGSConnectionID cid,
72 extern CGWindowLevel CGSGetWindowLevel (CGSConnectionID cid,
81 extern CGSError CGSGetMouseEnabledFlags (CGSConnectionID cid, CGSWindowID wid, int *flags);
  /frameworks/base/telephony/java/android/telephony/
CellIdentityWcdma.java 57 * @param cid 28-bit UMTS Cell Identity
62 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
66 mCid = cid;
70 private CellIdentityWcdma(CellIdentityWcdma cid) {
71 mMcc = cid.mMcc;
72 mMnc = cid.mMnc;
73 mLac = cid.mLac;
74 mCid = cid.mCid;
75 mPsc = cid.mPsc;
104 * @return CID
    [all...]
CellIdentityGsm.java 54 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
58 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) {
62 mCid = cid;
65 private CellIdentityGsm(CellIdentityGsm cid) {
66 mMcc = cid.mMcc;
67 mMnc = cid.mMnc;
68 mLac = cid.mLac;
69 mCid = cid.mCid;
98 * @return CID
CellIdentityCdma.java 83 private CellIdentityCdma(CellIdentityCdma cid) {
84 mNetworkId = cid.mNetworkId;
85 mSystemId = cid.mSystemId;
86 mBasestationId = cid.mBasestationId;
87 mLongitude = cid.mLongitude;
88 mLatitude = cid.mLatitude;
CellIdentityLte.java 71 private CellIdentityLte(CellIdentityLte cid) {
72 mMcc = cid.mMcc;
73 mMnc = cid.mMnc;
74 mCi = cid.mCi;
75 mPci = cid.mPci;
76 mTac = cid.mTac;
  /external/chromium_org/third_party/openssl/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/x509v3/
pcy_data.c 86 const ASN1_OBJECT *cid, int crit)
90 if (!policy && !cid)
92 if (cid)
94 id = OBJ_dup(cid);
  /external/chromium_org/third_party/openssl/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...]
  /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...]
  /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/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/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/qemu/hw/
bt-l2cap.c 48 void (*frame_in)(struct l2cap_chan_s *chan, uint16_t cid,
73 } *cid[L2CAP_CID_MAX]; member in struct:l2cap_instance_s
75 * CLOSED -> !cid[N]
78 * CONFIG -> cid[N] && config < 3
79 * WAIT_CONFIG -> never occurs, cid[N] && config == 0 && !config_r
80 * WAIT_SEND_CONFIG -> never occurs, cid[N] && config == 1 && !config_r
81 * WAIT_CONFIG_REQ_RSP -> cid[N] && config == 0 && config_req_id
82 * WAIT_CONFIG_RSP -> cid[N] && config == 1 && config_req_id
83 * WAIT_CONFIG_REQ -> cid[N] && config == 2
84 * OPEN -> cid[N] && config ==
405 int cid = l2cap_cid_new(l2cap); local
1060 uint16_t cid = le16_to_cpu(frame->cid); local
1206 int cid; local
    [all...]
  /frameworks/opt/telephony/src/java/android/telephony/
SmsCbLocation.java 62 public SmsCbLocation(String plmn, int lac, int cid) {
65 mCid = cid;
147 * @param cid the Cell ID to compare with
150 public boolean isInLocationArea(String plmn, int lac, int cid) {
159 if (mCid != -1 && mCid != cid) {
  /external/bluetooth/bluedroid/stack/l2cap/
l2c_api.c 209 ** Returns the CID of the connection, or 0 if it failed to start
226 ** Returns the CID of the connection, or 0 if it failed to start
315 L2CAP_TRACE_API2 ("L2CAP - L2CA_conn_req(psm: 0x%04x) returned CID: 0x%04x", psm, p_ccb->local_cid);
317 /* Return the local CID as our handle */
356 L2CAP_TRACE_API6 ("L2CA_ErtmConnectRsp() CID: 0x%04x Result: %d Status: %d BDA: %08x%04x p_ertm_info:0x%08x",
435 BOOLEAN L2CA_ConfigReq (UINT16 cid, tL2CAP_CFG_INFO *p_cfg)
439 L2CAP_TRACE_API5 ("L2CA_ConfigReq() CID 0x%04x: fcr_present:%d (mode %d) mtu_present:%d (%d)",
440 cid, p_cfg->fcr_present, p_cfg->fcr.mode, p_cfg->mtu_present, p_cfg->mtu);
443 if ((p_ccb = l2cu_find_ccb_by_cid (NULL, cid)) == NULL)
445 L2CAP_TRACE_WARNING1 ("L2CAP - no CCB for L2CA_cfg_req, CID: %d", cid)
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmCellBroadcastHandler.java 112 int cid = -1; local
120 cid = cellLocation.getCid();
131 location = new SmsCbLocation(plmn, lac, cid);
183 if (!info.matchesLocation(plmn, lac, cid)) {
221 // location (PLMN, plus LAC and CID if these are part of the geographical scope).
236 * @param cid the current Cell ID
239 public boolean matchesLocation(String plmn, int lac, int cid) {
240 return mLocation.isInLocationArea(plmn, lac, cid);

Completed in 336 milliseconds

1 2 3 4 5 6 7 8 910