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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/telephony/java/android/telephony/
PcoData.java 31 public final int cid; field in class:PcoData
36 public PcoData(int cid, String bearerProto, int pcoId, byte[]contents) {
37 this.cid = cid;
44 cid = in.readInt();
54 out.writeInt(cid);
84 return "PcoData(" + cid + ", " + bearerProto + ", " + pcoId + ", contents[" +
CellIdentityGsm.java 62 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
66 public CellIdentityGsm (int mcc, int mnc, int lac, int cid) {
67 this(mcc, mnc, lac, cid, Integer.MAX_VALUE, Integer.MAX_VALUE);
75 * @param cid 16-bit GSM Cell Identity or 28-bit UMTS Cell Identity
81 public CellIdentityGsm (int mcc, int mnc, int lac, int cid, int arfcn, int bsic) {
85 mCid = cid;
90 private CellIdentityGsm(CellIdentityGsm cid) {
91 mMcc = cid.mMcc;
92 mMnc = cid.mMnc;
93 mLac = cid.mLac
    [all...]
CellIdentityWcdma.java 62 * @param cid 28-bit UMTS Cell Identity
67 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc) {
68 this(mcc, mnc, lac, cid, psc, Integer.MAX_VALUE);
76 * @param cid 28-bit UMTS Cell Identity
82 public CellIdentityWcdma (int mcc, int mnc, int lac, int cid, int psc, int uarfcn) {
86 mCid = cid;
91 private CellIdentityWcdma(CellIdentityWcdma cid) {
92 mMcc = cid.mMcc;
93 mMnc = cid.mMnc;
94 mLac = cid.mLac
    [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/pdfium/third_party/freetype/src/cid/
cidriver.c 5 /* CID driver interface (body). */
50 const char* result = face->cid.cid_font_name;
75 *afont_info = ((CID_Face)face)->cid.font_info;
93 (PS_HasGlyphNamesFunc) NULL, /* unsupported with CID fonts */
100 * CID INFO SERVICE
109 CID_FaceInfo cid = &face->cid; local
113 *registry = cid->registry;
116 *ordering = cid->ordering;
119 *supplement = cid->supplement
    [all...]
cidobjs.c 5 /* CID objects manager (body). */
142 CID_FaceDict dict = face->cid.font_dicts + face->root.face_index;
198 CID_FaceInfo cid; local
205 cid = &face->cid;
206 info = &cid->font_info;
215 for ( n = 0; n < cid->num_dicts; n++ )
238 FT_FREE( cid->font_dicts );
239 cid->num_dicts = 0;
242 FT_FREE( cid->cid_font_name )
350 CID_FaceInfo cid = &face->cid; local
    [all...]
cidload.c 5 /* CID-keyed Type1 font loader (body). */
78 CID_FaceInfo cid = &face->cid; local
93 object = (FT_Byte*)cid;
97 object = (FT_Byte*)&cid->font_info;
105 object = (FT_Byte*)&cid->font_bbox;
113 if ( parser->num_dict < 0 || parser->num_dict >= cid->num_dicts )
121 dict = cid->font_dicts + parser->num_dict;
159 if ( parser->num_dict >= 0 && parser->num_dict < face->cid.num_dicts )
166 dict = face->cid.font_dicts + parser->num_dict
216 CID_FaceInfo cid = &face->cid; local
407 CID_FaceInfo cid = &face->cid; local
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/
1-1.c 33 clockid_t cid; local
35 rc = pthread_getcpuclockid(pthread_self(), &cid);
40 printf("clock id of new thread is %d\n", cid);
  /system/bt/stack/hid/
hidd_conn.cc 47 static void hidd_l2cif_connect_ind(BD_ADDR bd_addr, uint16_t cid, uint16_t psm,
49 static void hidd_l2cif_connect_cfm(uint16_t cid, uint16_t result);
50 static void hidd_l2cif_config_ind(uint16_t cid, tL2CAP_CFG_INFO* p_cfg);
51 static void hidd_l2cif_config_cfm(uint16_t cid, tL2CAP_CFG_INFO* p_cfg);
52 static void hidd_l2cif_disconnect_ind(uint16_t cid, bool ack_needed);
53 static void hidd_l2cif_disconnect_cfm(uint16_t cid, uint16_t result);
54 static void hidd_l2cif_data_ind(uint16_t cid, BT_HDR* p_msg);
55 static void hidd_l2cif_cong_ind(uint16_t cid, bool congested);
176 static void hidd_l2cif_connect_ind(BD_ADDR bd_addr, uint16_t cid, uint16_t psm,
182 HIDD_TRACE_EVENT("%s: psm=%04x cid=%04x id=%02x", __func__, psm, cid, id)
894 uint16_t cid; local
    [all...]
  /external/boringssl/src/crypto/x509v3/
pcy_data.c 88 const ASN1_OBJECT *cid, int crit)
92 if (!policy && !cid)
94 if (cid) {
95 id = OBJ_dup(cid);
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 93 public static String createSdDir(long sizeBytes, String cid, String sdEncKey, int uid,
103 int rc = storageManager.createSecureContainer(cid, sizeMb, "ext4", sdEncKey, uid,
106 Log.e(TAG, "Failed to create secure container " + cid);
109 String cachePath = storageManager.getSecureContainerPath(cid);
110 if (localLOGV) Log.i(TAG, "Created secure container " + cid +
119 public static boolean resizeSdDir(long sizeBytes, String cid, String sdEncKey) {
124 int rc = storageManager.resizeSecureContainer(cid, sizeMb, sdEncKey);
131 Log.e(TAG, "Failed to create secure container " + cid);
135 public static String mountSdDir(String cid, String key, int ownerUid) {
136 return mountSdDir(cid, key, ownerUid, true)
    [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/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getcpuclockid/speculative/
3-1.c 40 clockid_t cid; local
55 rc = pthread_getcpuclockid(new_th, &cid);
  /external/autotest/client/site_tests/cellular_MbimComplianceError/
cellular_MbimComplianceERR01.py 53 (response_message.cid != request_message.cid)):
57 '(transaction_id, service_id, cid). '
62 request_message.cid,
65 response_message.cid))
  /external/freetype/include/freetype/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
41 /* CID Fonts */
44 /* CID-keyed font specific API. */
47 /* This section contains the declaration of CID-keyed font specific */
60 * "R/O/S") from a CID-keyed font.
80 * This function only works with CID faces, returning an error
99 * Retrieve the type of the input face, CID keyed or not. In
101 * successfully also for CID-keyed fonts in an SFNT wrapper.
115 * This function only works with CID faces and OpenType fonts,
132 * 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/pdfium/core/fpdfapi/cmaps/
cmap_int.h 31 uint32_t FPDFAPI_CharCodeFromCID(const FXCMAP_CMap* pMap, uint16_t cid);
  /external/pdfium/third_party/freetype/include/freetype/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
41 /* CID Fonts */
44 /* CID-keyed font specific API. */
47 /* This section contains the declaration of CID-keyed font specific */
60 * "R/O/S") from a CID-keyed font.
80 * This function only works with CID faces, returning an error
99 * Retrieve the type of the input face, CID keyed or not. In
101 * successfully also for CID-keyed fonts in an SNFT wrapper.
115 * This function only works with CID faces and OpenType fonts,
132 * Retrieve the CID of the input glyph index
    [all...]
  /frameworks/base/telephony/java/com/android/internal/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) {
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftcid.h 5 /* FreeType API for accessing CID font information (specification). */
41 /* CID Fonts */
44 /* CID-keyed font specific API. */
47 /* This section contains the declaration of CID-keyed font specific */
60 * "R/O/S") from a CID-keyed font.
80 * This function only works with CID faces, returning an error
99 * Retrieve the type of the input face, CID keyed or not. In
101 * successfully also for CID-keyed fonts in an SNFT wrapper.
115 * This function only works with CID faces and OpenType fonts,
132 * Retrieve the CID of the input glyph index
    [all...]
  /external/freetype/src/base/
ftcid.c 5 /* FreeType API for accessing CID font information. */
46 FT_FACE_FIND_SERVICE( face, service, CID );
78 FT_FACE_FIND_SERVICE( face, service, CID );
94 FT_UInt *cid )
105 FT_FACE_FIND_SERVICE( face, service, CID );
111 if ( cid )
112 *cid = c;
  /external/pdfium/third_party/freetype/src/base/
ftcid.c 5 /* FreeType API for accessing CID font information. */
46 FT_FACE_FIND_SERVICE( face, service, CID );
78 FT_FACE_FIND_SERVICE( face, service, CID );
94 FT_UInt *cid )
105 FT_FACE_FIND_SERVICE( face, service, CID );
111 if ( cid )
112 *cid = c;

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>