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

123

/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.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;
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java191 ComponentInfo ci = getComponentInfo();
192 ApplicationInfo ai = ci.applicationInfo;
194 label = pm.getText(ci.packageName, labelRes, ai);
200 CharSequence data = ci.loadLabel(pm);
222 ComponentInfo ci = getComponentInfo();
224 ApplicationInfo ai = ci.applicationInfo;
225 dr = pm.getDrawable(ci.packageName, iconResourceId, ai);
230 return ci.loadIcon(pm);
243 final ComponentInfo ci = getComponentInfo();
244 if (ci !
[all...]
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp453 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { argument
454 return ci->numsubsamples;
458 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
459 if (!ci) {
465 memcpy(dst, ci->key, 16);
470 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
471 if (!ci) {
477 memcpy(dst, ci->iv, 16);
482 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo* ci) { argument
483 if (!ci) {
490 AMediaCodecCryptoInfo_getClearBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
502 AMediaCodecCryptoInfo_getEncryptedBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DCallLog.java402 * @param ci the CallerInfo object to get the target contact from. Can be null
420 public static Uri addCall(CallerInfo ci, Context context, String number, argument
423 return addCall(ci, context, number, presentation, callType, features, accountHandle,
431 * @param ci the CallerInfo object to get the target contact from. Can be null
452 public static Uri addCall(CallerInfo ci, Context context, String number, argument
455 return addCall(ci, context, number, presentation, callType, features, accountHandle,
462 * @param ci the CallerInfo object to get the target contact from. Can be null
485 public static Uri addCall(CallerInfo ci, Context context, String number, argument
522 if (ci != null) {
523 ci
[all...]
/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.java59 * @param ci 28-bit Cell Identity
65 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) { argument
68 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.java158 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
159 final boolean mayCompat = !ci.alwaysSupportsScreen()
160 && !ci.neverSupportsScreen();
175 CompatibilityInfo ci = new CompatibilityInfo(ai, mService.mConfiguration.screenLayout,
178 //Slog.i(TAG, "*********** COMPAT FOR PKG " + ai.packageName + ": " + ci);
179 return ci;
301 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
302 if (ci.alwaysSupportsScreen()) {
307 if (ci.neverSupportsScreen()) {
321 ci
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiScanningServiceImpl.java150 ClientInfo ci = mClients.remove(msg.replyTo);
151 if (ci != null) { /* can be null if send failed above */
152 if (DBG) localLog("closing client " + ci.mUid);
153 ci.cleanup();
170 ClientInfo ci = mClients.get(msg.replyTo);
171 if (ci == null) {
334 ClientInfo ci = mClients.get(msg.replyTo);
390 ClientInfo ci = mClients.get(msg.replyTo);
400 if (addScanRequest(ci, msg.arg2, (ScanSettings) msg.obj)) {
407 removeScanRequest(ci, ms
1198 logScanRequest(String request, ClientInfo ci, int id, ScanSettings settings) argument
1214 addScanRequest(ClientInfo ci, int handler, ScanSettings settings) argument
1260 addSingleScanRequest(ClientInfo ci, int handler, ScanSettings settings) argument
1285 removeScanRequest(ClientInfo ci, int handler) argument
1335 setHotlist(ClientInfo ci, int handler, WifiScanner.HotlistSettings settings) argument
1340 resetHotlist(ClientInfo ci, int handler) argument
1347 trackWifiChanges(ClientInfo ci, int handler) argument
1352 untrackWifiChanges(ClientInfo ci, int handler) argument
[all...]
H A DRttService.java75 ClientInfo ci = mClients.remove(msg.replyTo);
76 if (ci != null) ci.cleanup();
84 ClientInfo ci = mClients.get(msg.replyTo);
85 if (ci == null) {
146 ClientInfo ci; field in class:RttService.RttServiceImpl.RttRequest
180 request.ci = this;
276 ClientInfo ci = mClients.get(msg.replyTo);
300 } else if (ci.addRttRequest(msg.arg2, params) == false) {
319 request.ci
[all...]
/frameworks/base/libs/hwui/tests/
H A Dmain.cpp146 for (size_t ci = 0; ci < cards.size(); ci++) {
147 cards[ci]->mutateStagingProperties().setTranslationX(curFrame);
148 cards[ci]->mutateStagingProperties().setTranslationY(curFrame);
149 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
187 for (size_t ci = 0; ci < cards.size(); ci++) {
188 cards[ci]
[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.java92 ICreateInfo ci = new ICreateInfo() {
151 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
170 ICreateInfo ci = new ICreateInfo() {
231 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
260 ICreateInfo ci = new ICreateInfo() {
319 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
320 Set<String> excludedClasses = ci.getExcludedClasses();
346 ICreateInfo ci = new ICreateInfo() {
406 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
412 ci
[all...]
/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 391 milliseconds

123