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

123

/frameworks/base/libs/hwui/tests/common/scenes/
H A DShadowGrid2Animation.cpp47 for (size_t ci = 0; ci < cards.size(); ci++) {
48 cards[ci]->mutateStagingProperties().setTranslationX(curFrame);
49 cards[ci]->mutateStagingProperties().setTranslationY(curFrame);
50 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
H A DShadowGridAnimation.cpp47 for (size_t ci = 0; ci < cards.size(); ci++) {
48 cards[ci]->mutateStagingProperties().setTranslationX(curFrame);
49 cards[ci]->mutateStagingProperties().setTranslationY(curFrame);
50 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y);
H A DRecentsAnimation.cpp62 for (size_t ci = 0; ci < mCards.size(); ci++) {
63 mCards[ci]->mutateStagingProperties().setTranslationY(curFrame);
64 mCards[ci]->setPropertyFieldsDirty(RenderNode::Y);
H A DListViewAnimation.cpp51 for (size_t ci = 0; ci < cards.size(); ci++) {
52 canvas.drawRenderNode(cards[ci].get());
68 for (size_t ci = 0; ci < cards.size(); ci++) {
70 auto card = cards[(ci + cardIndexOffset) % cards.size()];
71 int top = ((int)ci) * (cardSpacing + cardHeight) + pxOffset;
77 canvas.drawRenderNode(cards[ci]
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
H A DWifiScanningServiceImpl.java192 ClientInfo ci = mClients.get(msg.replyTo);
193 if (ci == null) {
220 logScanRequest("registerScanListener", ci, msg.arg2, null, null, null);
221 mSingleScanListeners.addRequest(ci, msg.arg2, null, null);
225 logScanRequest("deregisterScanListener", ci, msg.arg2, null, null, null);
226 mSingleScanListeners.removeRequest(ci, msg.arg2);
323 private WorkSource computeWorkSource(ClientInfo ci, WorkSource requestedWorkSource) { argument
332 " from " + ci);
335 WorkSource callingWorkSource = new WorkSource(ci.getUid());
364 void addRequest(ClientInfo ci, in argument
368 removeRequest(ClientInfo ci, int handlerId) argument
391 getAllSettingsForClient(ClientInfo ci) argument
403 removeAllForClient(ClientInfo ci) argument
668 validateScanRequest(ClientInfo ci, int handler, ScanSettings settings, WorkSource workSource) argument
723 removeSingleScanRequest(ClientInfo ci, int handler) argument
731 removeSingleScanRequests(ClientInfo ci) argument
877 getBackgroundScanSettings(ClientInfo ci) argument
881 removeBackgroundScanSettings(ClientInfo ci) argument
886 removeHotlistSettings(ClientInfo ci) argument
1115 addBackgroundScanRequest(ClientInfo ci, int handler, ScanSettings settings, WorkSource workSource) argument
1235 removeBackgroundScanRequest(ClientInfo ci, int handler) argument
1298 addHotlist(ClientInfo ci, int handler, WifiScanner.HotlistSettings settings) argument
1309 removeHotlist(ClientInfo ci, int handler) argument
1456 removePnoSettings(ClientInfo ci) argument
1749 addInternalClient(ClientInfo ci) argument
1759 addPnoScanRequest(ClientInfo ci, int handler, ScanSettings scanSettings, PnoSettings pnoSettings) argument
1766 removePnoScanRequest(ClientInfo ci, int handler) argument
1771 addHwPnoScanRequest(ClientInfo ci, int handler, ScanSettings scanSettings, PnoSettings pnoSettings) argument
1794 removeHwPnoScanRequest(ClientInfo ci, int handler) argument
1802 addSwPnoScanRequest(ClientInfo ci, int handler, ScanSettings scanSettings, PnoSettings pnoSettings) argument
1822 removeSwPnoScanRequest(ClientInfo ci, int handler) argument
2155 removeWifiChangeHandler(ClientInfo ci) argument
2501 addWifiChangeHandler(ClientInfo ci, int handler) argument
2516 removeWifiChangeHandler(ClientInfo ci, int handler) argument
2629 logScanRequest(String request, ClientInfo ci, int id, WorkSource workSource, ScanSettings settings, PnoSettings pnoSettings) argument
2651 logCallback(String callback, ClientInfo ci, int id, String extra) argument
[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);
/frameworks/base/core/java/android/content/pm/
H A DResolveInfo.java199 ComponentInfo ci = getComponentInfo();
200 ApplicationInfo ai = ci.applicationInfo;
202 label = pm.getText(ci.packageName, labelRes, ai);
208 CharSequence data = ci.loadLabel(pm);
230 ComponentInfo ci = getComponentInfo();
232 ApplicationInfo ai = ci.applicationInfo;
233 dr = pm.getDrawable(ci.packageName, iconResourceId, ai);
238 return ci.loadIcon(pm);
251 final ComponentInfo ci = getComponentInfo();
252 if (ci !
[all...]
/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);
127 getCdmaSubscriptionSourceManagerInstance(Context context, CommandsInterface ci, Handler h, argument
129 return CdmaSubscriptionSourceManager.getInstance(context, ci, h, what, obj);
/frameworks/base/core/java/android/provider/
H A DCallLog.java491 * @param ci the CallerInfo object to get the target contact from. Can be null
509 public static Uri addCall(CallerInfo ci, Context context, String number, argument
512 return addCall(ci, context, number, /* postDialDigits =*/ "", /* viaNumber =*/ "",
522 * @param ci the CallerInfo object to get the target contact from. Can be null
547 public static Uri addCall(CallerInfo ci, Context context, String number, argument
551 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType,
559 * @param ci the CallerInfo object to get the target contact from. Can be null
590 public static Uri addCall(CallerInfo ci, Context context, String number, argument
633 if (ci != null) {
634 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.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;
/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/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.java179 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
180 final boolean mayCompat = !ci.alwaysSupportsScreen()
181 && !ci.neverSupportsScreen();
200 CompatibilityInfo ci = new CompatibilityInfo(ai, mService.mConfiguration.screenLayout,
203 //Slog.i(TAG, "*********** COMPAT FOR PKG " + ai.packageName + ": " + ci);
204 return ci;
342 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
343 if (ci.alwaysSupportsScreen()) {
348 if (ci.neverSupportsScreen()) {
362 ci
[all...]
/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/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.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

Completed in 2413 milliseconds

123