Searched defs:ci (Results 1 - 25 of 42) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DMetaDataTest.java42 private void checkMetaData(ComponentName cn, PackageItemInfo ci) argument
44 assertNotNull("Unable to find component " + cn, ci);
46 Bundle md = ci.metaData;
59 XmlResourceParser xml = ci.loadXmlMetaData(mContext.getPackageManager(),
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DCsimFileHandler.java30 public CsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
31 super(app, aid, ci);
H A DIsimFileHandler.java30 public IsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
31 super(app, aid, ci);
H A DSIMFileHandler.java33 public SIMFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
34 super(app, aid, ci);
H A DUsimFileHandler.java31 public UsimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
32 super(app, aid, ci);
H A DRuimFileHandler.java33 public RuimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
34 super(app, aid, ci);
H A DUiccController.java107 public static UiccController make(Context c, CommandsInterface[] ci) { argument
112 mInstance = new UiccController(c, ci);
117 private UiccController(Context c, CommandsInterface []ci) { argument
120 mCis = ci;
H A DIsimUiccRecords.java81 public IsimUiccRecords(UiccCardApplication app, Context c, CommandsInterface ci) { argument
82 super(app, c, ci);
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java42 public CellInfoCdma(CellInfoCdma ci) { argument
43 super(ci);
44 this.mCellIdentityCdma = ci.mCellIdentityCdma.copy();
45 this.mCellSignalStrengthCdma = ci.mCellSignalStrengthCdma.copy();
H A DCellInfoGsm.java42 public CellInfoGsm(CellInfoGsm ci) { argument
43 super(ci);
44 this.mCellIdentityGsm = ci.mCellIdentityGsm.copy();
45 this.mCellSignalStrengthGsm = ci.mCellSignalStrengthGsm.copy();
H A DCellInfoLte.java42 public CellInfoLte(CellInfoLte ci) { argument
43 super(ci);
44 this.mCellIdentityLte = ci.mCellIdentityLte.copy();
45 this.mCellSignalStrengthLte = ci.mCellSignalStrengthLte.copy();
H A DCellInfoWcdma.java42 public CellInfoWcdma(CellInfoWcdma ci) { argument
43 super(ci);
44 this.mCellIdentityWcdma = ci.mCellIdentityWcdma.copy();
45 this.mCellSignalStrengthWcdma = ci.mCellSignalStrengthWcdma.copy();
H A DCellIdentityLte.java62 * @param ci 28-bit Cell Identity
68 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) { argument
69 this(mcc, mnc, ci, pci, tac, Integer.MAX_VALUE);
76 * @param ci 28-bit Cell Identity
83 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac, int earfcn) { argument
86 mCi = ci;
H A DCellInfo.java68 protected CellInfo(CellInfo ci) { argument
69 this.mRegistered = ci.mRegistered;
70 this.mTimeStampType = ci.mTimeStampType;
71 this.mTimeStamp = ci.mTimeStamp;
/frameworks/base/core/java/com/android/internal/app/
H A DResolverComparator.java221 public ScoredTarget(ComponentInfo ci) { argument
222 componentInfo = ci;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaSubscriptionSourceManager.java61 private CdmaSubscriptionSourceManager(Context context, CommandsInterface ci) { argument
62 mCi = ci;
77 CommandsInterface ci, Handler h, int what, Object obj) {
80 sInstance = new CdmaSubscriptionSourceManager(context, ci);
76 getInstance(Context context, CommandsInterface ci, Handler h, int what, Object obj) argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java69 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DTelephonyComponentFactory.java63 public ServiceStateTracker makeServiceStateTracker(GsmCdmaPhone phone, CommandsInterface ci) { argument
64 return new ServiceStateTracker(phone, ci);
79 public IccCardProxy makeIccCardProxy(Context context, CommandsInterface ci, int phoneId) { argument
80 return new IccCardProxy(context, ci, phoneId);
128 getCdmaSubscriptionSourceManagerInstance(Context context, CommandsInterface ci, Handler h, argument
130 return CdmaSubscriptionSourceManager.getInstance(context, ci, h, what, obj);
H A DSubscriptionInfoUpdater.java117 public SubscriptionInfoUpdater(Context context, Phone[] phone, CommandsInterface[] ci) { argument
/frameworks/base/core/java/android/view/
H A DDisplayInfo.java526 public void getAppMetrics(DisplayMetrics outMetrics, CompatibilityInfo ci, argument
528 getMetricsWithSize(outMetrics, ci, configuration, appWidth, appHeight);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DRttService.java68 ClientInfo ci = mClients.remove(msg.replyTo);
69 if (ci != null) ci.cleanup();
81 ClientInfo ci = mClients.get(msg.replyTo);
82 if (ci == null) {
157 ClientInfo ci; field in class:RttService.RttServiceImpl.RttRequest
201 request.ci = this;
330 ClientInfo ci = mClients.get(msg.replyTo);
347 } else if (ci.addRttRequest(msg.arg2, params) == false) {
362 request.ci
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DSubscriptionControllerMock.java52 public static SubscriptionController init(Context c, CommandsInterface[] ci) { argument
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp481 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { argument
482 return ci->numsubsamples;
486 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
487 if (!ci) {
493 memcpy(dst, ci->key, 16);
498 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
499 if (!ci) {
505 memcpy(dst, ci->iv, 16);
510 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo* ci) { argument
511 if (!ci) {
518 AMediaCodecCryptoInfo_getClearBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
530 AMediaCodecCryptoInfo_getEncryptedBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DCallLog.java477 * @param ci the CallerInfo object to get the target contact from. Can be null
495 public static Uri addCall(CallerInfo ci, Context context, String number, argument
498 return addCall(ci, context, number, /* postDialDigits =*/ "", /* viaNumber =*/ "",
508 * @param ci the CallerInfo object to get the target contact from. Can be null
533 public static Uri addCall(CallerInfo ci, Context context, String number, argument
537 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType,
545 * @param ci the CallerInfo object to get the target contact from. Can be null
576 public static Uri addCall(CallerInfo ci, Context context, String number, argument
619 if (ci != null) {
620 ci
[all...]
/frameworks/native/services/surfaceflinger/
H A DDispSync.cpp274 CallbackInvocation ci; local
275 ci.mCallback = mEventListeners[i].mCallback;
276 ci.mEventTime = t;
279 callbackInvocations.push(ci);

Completed in 1146 milliseconds

12