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

1 2 3 4 5

  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 61 public static String createSdDir(int sizeMb, String cid,
71 cid, sizeMb, "fat", sdEncKey, uid);
73 Log.e(TAG, "Failed to create secure container " + cid);
76 String cachePath = mountService.getSecureContainerPath(cid);
77 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
86 public static String mountSdDir(String cid, String key, int ownerUid) {
88 int rc = getMountService().mountSecureContainer(cid, key, ownerUid);
90 Log.i(TAG, "Failed to mount container " + cid + " rc : " + rc);
93 return getMountService().getSecureContainerPath(cid);
100 public static boolean unMountSdDir(String cid) {
    [all...]
  /external/bluetooth/hcidump/parser/
cmtp.c 43 uint16_t cid; member in struct:__anon2201
49 uint16_t handle = frm->handle, cid = frm->cid; local
58 if (table[i].handle == handle && table[i].cid == cid) {
63 if (pos < 0 && !table[i].handle && !table[i].cid)
71 table[pos].cid = cid;
90 msg->cid = cid;
95 uint16_t handle = frm->handle, cid = frm->cid; local
130 uint16_t handle = frm->handle, cid = frm->cid; local
    [all...]
l2cap.c 56 uint16_t cid; member in struct:__anon2203
93 static void add_cid(int in, uint16_t handle, uint16_t cid, uint16_t psm)
100 if ((pos < 0 && !table[i].cid) || table[i].cid == cid)
108 table[pos].cid = cid;
118 uint16_t cid[2]; local
121 cid[0] = dcid;
122 cid[1] = scid
367 uint32_t cid; local
714 uint16_t cid = btohs(hdr->cid); local
    [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.12/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);
  /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;
129 if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i))) goto err;
133 ASN1_INTEGER_free(cid->serialNumber);
134 if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber))) goto err;
136 return cid;
140 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);
259 OCSP_CERTID *tmpid, *cid; local
269 cid = sk_OCSP_SINGLERESP_value(sresp, 0)->certId;
277 if (OCSP_id_issuer_cmp(cid, tmpid))
281 cid->hashAlgorithm->algorithm))
289 *ret = cid;
294 static int ocsp_match_issuerid(X509 *cert, OCSP_CERTID *cid,
298 if(cid)
304 if (!(dgst = EVP_get_digestbyobj(cid->hashAlgorithm->algorithm)))
313 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)))
ocsp_ext.c 427 OCSP_CRLID *cid = NULL; local
429 if (!(cid = OCSP_CRLID_new())) goto err;
432 if (!(cid->crlUrl = ASN1_IA5STRING_new())) goto err;
433 if (!(ASN1_STRING_set(cid->crlUrl, url, -1))) goto err;
437 if (!(cid->crlNum = ASN1_INTEGER_new())) goto err;
438 if (!(ASN1_INTEGER_set(cid->crlNum, *n))) goto err;
442 if (!(cid->crlTime = ASN1_GENERALIZEDTIME_new())) goto err;
443 if (!(ASN1_GENERALIZEDTIME_set_string(cid->crlTime, tim)))
446 x = X509V3_EXT_i2d(NID_id_pkix_OCSP_CrlID, 0, cid);
448 if (cid) OCSP_CRLID_free(cid)
    [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/base/telephony/java/android/telephony/gsm/
GsmCellLocation.java 31 * Empty constructor. Initializes the LAC and CID to -1.
44 mCid = bundle.getInt("cid", mCid);
84 public void setLacAndCid(int lac, int cid) {
86 mCid = cid;
143 m.putInt("cid", mCid);
  /external/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/freetype/src/cff/
cffload.h 59 FT_UInt cid );
  /frameworks/base/telephony/java/android/telephony/
NeighboringCellInfo.java 52 * CID in 16 bits format in GSM. Return UNKNOWN_CID in UMTS and CMDA.
71 * Empty constructor. Initializes the RSSI and CID.
89 * Initialize the object from rssi and cid.
98 public NeighboringCellInfo(int rssi, int cid) {
100 mCid = cid;
131 try {// set LAC/CID or PSC based on radioType
236 * @deprecated cid value passed as in location parameter passed to constructor
240 public void setCid(int cid) {
241 mCid = cid;
  /bionic/libc/kernel/common/linux/mmc/
card.h 67 struct mmc_cid cid; member in struct:mmc_card
84 #define mmc_card_name(c) ((c)->cid.prod_name)
  /development/ndk/platforms/android-3/include/linux/mmc/
card.h 67 struct mmc_cid cid; member in struct:mmc_card
84 #define mmc_card_name(c) ((c)->cid.prod_name)
  /external/kernel-headers/original/linux/mmc/
card.h 65 u32 raw_cid[4]; /* raw card CID */
68 struct mmc_cid cid; /* card identification */ member in struct:mmc_card
85 #define mmc_card_name(c) ((c)->cid.prod_name)
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mmc/
card.h 67 struct mmc_cid cid; member in struct:mmc_card
84 #define mmc_card_name(c) ((c)->cid.prod_name)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mmc/
card.h 67 struct mmc_cid cid; member in struct:mmc_card
84 #define mmc_card_name(c) ((c)->cid.prod_name)

Completed in 835 milliseconds

1 2 3 4 5