Searched refs:ci (Results 1 - 25 of 56) sorted by relevance

123

/frameworks/base/core/java/android/provider/
H A DCallLog.java369 * @param ci the CallerInfo object to get the target contact from. Can be null
387 public static Uri addCall(CallerInfo ci, Context context, String number, argument
390 return addCall(ci, context, number, presentation, callType, features, accountHandle,
398 * @param ci the CallerInfo object to get the target contact from. Can be null
419 public static Uri addCall(CallerInfo ci, Context context, String number, argument
440 if (ci != null) {
441 ci.name = "";
471 if (ci != null) {
472 values.put(CACHED_NAME, ci.name);
473 values.put(CACHED_NUMBER_TYPE, ci
[all...]
/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 DRuimFileHandler.java33 public RuimFileHandler(UiccCardApplication app, String aid, CommandsInterface ci) { argument
34 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 DUiccCardApplication.java93 CommandsInterface ci) {
107 mCi = ci;
118 void update (IccCardApplicationStatus as, Context c, CommandsInterface ci) { argument
127 mCi = ci;
145 mIccRecords = createIccRecords(as.app_type, c, ci);
179 private IccRecords createIccRecords(AppType type, Context c, CommandsInterface ci) { argument
181 return new SIMRecords(this, c, ci);
183 return new RuimRecords(this, c, ci);
185 return new IsimUiccRecords(this, c, ci);
90 UiccCardApplication(UiccCard uiccCard, IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
H A DUiccController.java101 public static UiccController make(Context c, CommandsInterface[] ci) { argument
106 mInstance = new UiccController(c, ci);
111 private UiccController(Context c, CommandsInterface []ci) { argument
114 mCis = ci;
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java175 ComponentInfo ci = getComponentInfo();
176 ApplicationInfo ai = ci.applicationInfo;
178 label = pm.getText(ci.packageName, labelRes, ai);
184 CharSequence data = ci.loadLabel(pm);
209 ComponentInfo ci = getComponentInfo();
210 ApplicationInfo ai = ci.applicationInfo;
212 dr = pm.getDrawable(ci.packageName, icon, ai);
217 return ci.loadIcon(pm);
230 final ComponentInfo ci = getComponentInfo();
231 if (ci !
[all...]
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp444 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { argument
445 return ci->numsubsamples;
449 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
450 if (!ci) {
456 memcpy(dst, ci->key, 16);
461 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
462 if (!ci) {
468 memcpy(dst, ci->iv, 16);
473 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo* ci) { argument
474 if (!ci) {
481 AMediaCodecCryptoInfo_getClearBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
493 AMediaCodecCryptoInfo_getEncryptedBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
[all...]
/frameworks/base/libs/hwui/tests/
H A Dmain.cpp114 for (int ci = 0; ci < cards.size(); ci++) {
115 cards[ci]->mutateStagingProperties().setTranslationX(i);
116 cards[ci]->mutateStagingProperties().setTranslationY(i);
117 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
/frameworks/base/telephony/java/android/telephony/
H A DCellInfo.java68 protected CellInfo(CellInfo ci) { argument
69 this.mRegistered = ci.mRegistered;
70 this.mTimeStampType = ci.mTimeStampType;
71 this.mTimeStamp = ci.mTimeStamp;
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.java57 * @param ci 28-bit Cell Identity
63 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) { argument
66 mCi = ci;
/frameworks/base/services/core/java/com/android/server/am/
H A DNativeCrashListener.java77 CrashInfo ci = new CrashInfo();
78 ci.exceptionClassName = "Native crash";
79 ci.exceptionMessage = Os.strsignal(mSignal);
80 ci.throwFileName = "unknown";
81 ci.throwClassName = "unknown";
82 ci.throwMethodName = "unknown";
83 ci.stackTrace = mCrashReport;
86 mAm.handleApplicationCrashInner("native_crash", mApp, mApp.processName, ci);
H A DCompatModePackages.java155 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
156 final boolean mayCompat = !ci.alwaysSupportsScreen()
157 && !ci.neverSupportsScreen();
172 CompatibilityInfo ci = new CompatibilityInfo(ai, mService.mConfiguration.screenLayout,
175 //Slog.i(TAG, "*********** COMPAT FOR PKG " + ai.packageName + ": " + ci);
176 return ci;
298 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
299 if (ci.alwaysSupportsScreen()) {
304 if (ci.neverSupportsScreen()) {
318 ci
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DRttService.java74 ClientInfo ci = mClients.remove(msg.replyTo);
75 if (ci != null) ci.cleanup();
83 ClientInfo ci = mClients.get(msg.replyTo);
84 if (ci == null) {
145 ClientInfo ci; field in class:RttService.RttServiceImpl.RttRequest
169 request.ci = this;
263 ClientInfo ci = mClients.get(msg.replyTo);
279 } else if (ci.addRttRequest(msg.arg2, params) == false) {
294 request.ci
[all...]
H A DWifiScanningServiceImpl.java118 ClientInfo ci = mClients.remove(msg.replyTo);
119 if (ci != null) { /* can be null if send failed above */
120 ci.cleanup();
129 ClientInfo ci = mClients.get(msg.replyTo);
130 if (ci == null) {
287 ClientInfo ci = mClients.get(msg.replyTo);
342 ClientInfo ci = mClients.get(msg.replyTo);
352 if (addScanRequest(ci, msg.arg2, (ScanSettings) msg.obj)) {
359 removeScanRequest(ci, msg.arg2);
362 replySucceeded(msg, getScanResults(ci));
1017 addScanRequest(ClientInfo ci, int handler, ScanSettings settings) argument
1058 removeScanRequest(ClientInfo ci, int handler) argument
1063 getScanResults(ClientInfo ci) argument
1101 setHotlist(ClientInfo ci, int handler, WifiScanner.HotlistSettings settings) argument
1106 resetHotlist(ClientInfo ci, int handler) argument
1113 trackWifiChanges(ClientInfo ci, int handler) argument
1118 untrackWifiChanges(ClientInfo ci, int handler) argument
[all...]
/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/cdma/
H A DCdmaSubscriptionSourceManager.java62 private CdmaSubscriptionSourceManager(Context context, CommandsInterface ci) { argument
64 mCi = ci;
79 CommandsInterface ci, Handler h, int what, Object obj) {
82 sInstance = new CdmaSubscriptionSourceManager(context, ci);
78 getInstance(Context context, CommandsInterface ci, Handler h, int what, Object obj) argument
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java86 ICreateInfo ci = new ICreateInfo() {
135 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
154 ICreateInfo ci = new ICreateInfo() {
205 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
234 ICreateInfo ci = new ICreateInfo() {
283 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
284 Set<String> excludedClasses = ci.getExcludedClasses();
/frameworks/base/core/java/android/app/
H A DLauncherActivity.java76 ComponentInfo ci = resolveInfo.activityInfo;
77 if (ci == null) ci = resolveInfo.serviceInfo;
78 if (label == null && ci != null) {
85 packageName = ci.applicationInfo.packageName;
86 className = ci.name;

Completed in 8854 milliseconds

123