Home
last modified time | relevance | path

Searched refs:ci (Results 1 – 25 of 72) sorted by relevance

123

/frameworks/base/libs/hwui/tests/common/
DTestListViewSceneBase.cpp45 for (size_t ci = 0; ci < mListItems.size(); ci++) { in createContent() local
46 canvas.drawRenderNode(mListItems[ci].get()); in createContent()
61 for (size_t ci = 0; ci < mListItems.size(); ci++) { in doFrame() local
63 auto listItem = mListItems[(ci + itemIndexOffset) % mListItems.size()]; in doFrame()
64 int top = ((int)ci) * (mItemSpacing + mItemHeight) + pxOffset; in doFrame()
70 canvas->drawRenderNode(mListItems[ci].get()); in doFrame()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
DWifiScanningServiceImpl.java203 ClientInfo ci = mClients.get(msg.replyTo); in handleMessage() local
204 if (ci == null) { in handleMessage()
224 logScanRequest("registerScanListener", ci, msg.arg2, null, null, null); in handleMessage()
225 mSingleScanListeners.addRequest(ci, msg.arg2, null, null); in handleMessage()
229 logScanRequest("deregisterScanListener", ci, msg.arg2, null, null, null); in handleMessage()
230 mSingleScanListeners.removeRequest(ci, msg.arg2); in handleMessage()
335 private WorkSource computeWorkSource(ClientInfo ci, WorkSource requestedWorkSource) { in computeWorkSource() argument
344 " from " + ci); in computeWorkSource()
347 WorkSource callingWorkSource = new WorkSource(ci.getUid()); in computeWorkSource()
376 void addRequest(ClientInfo ci, int handler, WorkSource reqworkSource, T settings) { in addRequest() argument
[all …]
/frameworks/base/libs/hwui/tests/common/scenes/
DShadowShaderAnimation.cpp47 for (size_t ci = 0; ci < cards.size(); ci++) { in doFrame() local
48 cards[ci]->mutateStagingProperties().setTranslationX(curFrame); in doFrame()
49 cards[ci]->mutateStagingProperties().setTranslationY(curFrame); in doFrame()
50 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
DShadowGridAnimation.cpp47 for (size_t ci = 0; ci < cards.size(); ci++) { in doFrame() local
48 cards[ci]->mutateStagingProperties().setTranslationX(curFrame); in doFrame()
49 cards[ci]->mutateStagingProperties().setTranslationY(curFrame); in doFrame()
50 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
DShadowGrid2Animation.cpp47 for (size_t ci = 0; ci < cards.size(); ci++) { in doFrame() local
48 cards[ci]->mutateStagingProperties().setTranslationX(curFrame); in doFrame()
49 cards[ci]->mutateStagingProperties().setTranslationY(curFrame); in doFrame()
50 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
DSimpleGradientAnimation.cpp42 for (size_t ci = 0; ci < cards.size(); ci++) { in doFrame() local
43 cards[ci]->mutateStagingProperties().setTranslationX(curFrame); in doFrame()
44 cards[ci]->mutateStagingProperties().setTranslationY(curFrame); in doFrame()
45 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
DBitmapFillrate.cpp49 for (size_t ci = 0; ci < mNodes.size(); ci++) { in doFrame() local
50 mNodes[ci]->mutateStagingProperties().setTranslationX(frameNr % 200); in doFrame()
51 mNodes[ci]->mutateStagingProperties().setTranslationY(frameNr % 200); in doFrame()
52 mNodes[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
DSimpleColorMatrixAnimation.cpp43 for (size_t ci = 0; ci < cards.size(); ci++) { in doFrame() local
44 cards[ci]->mutateStagingProperties().setTranslationX(curFrame); in doFrame()
45 cards[ci]->mutateStagingProperties().setTranslationY(curFrame); in doFrame()
46 cards[ci]->setPropertyFieldsDirty(RenderNode::X | RenderNode::Y); in doFrame()
DTvApp.cpp87 for (size_t ci = 0; ci < numCards; ci++) { in doFrame() local
88 updateCard(ci, frameNr); in doFrame()
191 void updateCard(int ci, int curFrame) { in updateCard() argument
193 sp<RenderNode> card = mCards[ci]; in updateCard()
201 sp<RenderNode> image = mImages[ci]; in updateCard()
202 sp<RenderNode> infoArea = mInfoAreas[ci]; in updateCard()
208 sp<RenderNode> overlay = mOverlays[ci]; in updateCard()
224 sk_sp<Bitmap> bitmap = mCachedBitmaps[ci]; in updateCard()
DRecentsAnimation.cpp64 for (size_t ci = 0; ci < mCards.size(); ci++) { in doFrame() local
65 mCards[ci]->mutateStagingProperties().setTranslationY(curFrame); in doFrame()
66 mCards[ci]->setPropertyFieldsDirty(RenderNode::Y); in doFrame()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DRttService.java87 ClientInfo ci = mClients.remove(mReplyTo); in binderDied() local
88 if (ci != null) { in binderDied()
89 ci.cleanup(); in binderDied()
121 ClientInfo ci = mClients.remove(msg.replyTo); in handleMessage() local
122 if (ci != null) ci.cleanup(); in handleMessage()
154 ClientInfo ci; in handleMessage() local
156 ci = mClients.get(msg.replyTo); in handleMessage()
158 if (ci == null) { in handleMessage()
168 if (!checkLocationPermission(ci)) { in handleMessage()
241 ClientInfo ci; field in RttService.RttServiceImpl.RttRequest
[all …]
/frameworks/base/core/java/android/content/pm/
DResolveInfo.java209 ComponentInfo ci = getComponentInfo(); in loadLabel() local
210 ApplicationInfo ai = ci.applicationInfo; in loadLabel()
212 label = pm.getText(ci.packageName, labelRes, ai); in loadLabel()
218 CharSequence data = ci.loadLabel(pm); in loadLabel()
274 ComponentInfo ci = getComponentInfo(); in loadIcon() local
276 ApplicationInfo ai = ci.applicationInfo; in loadIcon()
277 dr = pm.getDrawable(ci.packageName, iconResourceId, ai); in loadIcon()
282 return ci.loadIcon(pm); in loadIcon()
295 final ComponentInfo ci = getComponentInfo(); in getIconResourceInternal()
296 if (ci != null) { in getIconResourceInternal()
[all …]
/frameworks/av/media/ndk/
DNdkMediaCodec.cpp593 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { in AMediaCodecCryptoInfo_getNumSubSamples() argument
594 return ci->numsubsamples; in AMediaCodecCryptoInfo_getNumSubSamples()
598 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { in AMediaCodecCryptoInfo_getKey() argument
599 if (!ci) { in AMediaCodecCryptoInfo_getKey()
605 memcpy(dst, ci->key, 16); in AMediaCodecCryptoInfo_getKey()
610 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { in AMediaCodecCryptoInfo_getIV() argument
611 if (!ci) { in AMediaCodecCryptoInfo_getIV()
617 memcpy(dst, ci->iv, 16); in AMediaCodecCryptoInfo_getIV()
622 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo* ci) { in AMediaCodecCryptoInfo_getMode() argument
623 if (!ci) { in AMediaCodecCryptoInfo_getMode()
[all …]
/frameworks/base/core/java/android/provider/
DCallLog.java522 public static Uri addCall(CallerInfo ci, Context context, String number, in addCall() argument
525 return addCall(ci, context, number, /* postDialDigits =*/ "", /* viaNumber =*/ "", in addCall()
560 public static Uri addCall(CallerInfo ci, Context context, String number, in addCall() argument
564 return addCall(ci, context, number, postDialDigits, viaNumber, presentation, callType, in addCall()
603 public static Uri addCall(CallerInfo ci, Context context, String number, in addCall() argument
646 if (ci != null) { in addCall()
647 ci.name = ""; in addCall()
682 if ((ci != null) && (ci.contactIdOrZero > 0)) { in addCall()
691 if (ci.normalizedNumber != null) { in addCall()
692 final String normalizedPhoneNumber = ci.normalizedNumber; in addCall()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DNativeCrashListener.java76 CrashInfo ci = new CrashInfo(); in run() local
77 ci.exceptionClassName = "Native crash"; in run()
78 ci.exceptionMessage = Os.strsignal(mSignal); in run()
79 ci.throwFileName = "unknown"; in run()
80 ci.throwClassName = "unknown"; in run()
81 ci.throwMethodName = "unknown"; in run()
82 ci.stackTrace = mCrashReport; in run()
85 mAm.handleApplicationCrashInner("native_crash", mApp, mApp.processName, ci); in run()
DCompatModePackages.java180 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai); in handlePackageAddedLocked() local
181 final boolean mayCompat = !ci.alwaysSupportsScreen() in handlePackageAddedLocked()
182 && !ci.neverSupportsScreen(); in handlePackageAddedLocked()
202 CompatibilityInfo ci = new CompatibilityInfo(ai, globalConfig.screenLayout, in compatibilityInfoForPackageLocked() local
206 return ci; in compatibilityInfoForPackageLocked()
344 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai); in setPackageScreenCompatModeLocked() local
345 if (ci.alwaysSupportsScreen()) { in setPackageScreenCompatModeLocked()
350 if (ci.neverSupportsScreen()) { in setPackageScreenCompatModeLocked()
364 ci = compatibilityInfoForPackageLocked(ai); in setPackageScreenCompatModeLocked()
380 + app.processName + " new compat " + ci); in setPackageScreenCompatModeLocked()
[all …]
/frameworks/rs/tests/lldb/tests/testcases/
Dtest_language.py28 ci = self._ci
30 ci.HasCommands() and
31 ci.CommandExists('language')
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
DTelephonyComponentFactory.java60 public ServiceStateTracker makeServiceStateTracker(GsmCdmaPhone phone, CommandsInterface ci) { in makeServiceStateTracker() argument
61 return new ServiceStateTracker(phone, ci); in makeServiceStateTracker()
88 public IccCardProxy makeIccCardProxy(Context context, CommandsInterface ci, int phoneId) { in makeIccCardProxy() argument
89 return new IccCardProxy(context, ci, phoneId); in makeIccCardProxy()
148 getCdmaSubscriptionSourceManagerInstance(Context context, CommandsInterface ci, Handler h, in getCdmaSubscriptionSourceManagerInstance() argument
150 return CdmaSubscriptionSourceManager.getInstance(context, ci, h, what, obj); in getCdmaSubscriptionSourceManagerInstance()
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
DAsmGeneratorTest.java92 ICreateInfo ci = new CreateInfoAdapter() { in testClassRenaming() local
103 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci); in testClassRenaming()
122 ICreateInfo ci = new CreateInfoAdapter() { in testJavaClassRefactoring() local
145 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci); in testJavaClassRefactoring()
175 ICreateInfo ci = new CreateInfoAdapter() { in testClassRefactoring() local
193 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci); in testClassRefactoring()
218 ICreateInfo ci = new CreateInfoAdapter() { in testClassExclusion() local
228 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci); in testClassExclusion()
229 Set<String> excludedClasses = ci.getExcludedClasses(); in testClassExclusion()
255 ICreateInfo ci = new CreateInfoAdapter() { in testMethodInjection() local
[all …]
/frameworks/base/telephony/java/android/telephony/
DCellInfoGsm.java42 public CellInfoGsm(CellInfoGsm ci) { in CellInfoGsm() argument
43 super(ci); in CellInfoGsm()
44 this.mCellIdentityGsm = ci.mCellIdentityGsm.copy(); in CellInfoGsm()
45 this.mCellSignalStrengthGsm = ci.mCellSignalStrengthGsm.copy(); in CellInfoGsm()
DCellInfoCdma.java42 public CellInfoCdma(CellInfoCdma ci) { in CellInfoCdma() argument
43 super(ci); in CellInfoCdma()
44 this.mCellIdentityCdma = ci.mCellIdentityCdma.copy(); in CellInfoCdma()
45 this.mCellSignalStrengthCdma = ci.mCellSignalStrengthCdma.copy(); in CellInfoCdma()
DCellInfoWcdma.java42 public CellInfoWcdma(CellInfoWcdma ci) { in CellInfoWcdma() argument
43 super(ci); in CellInfoWcdma()
44 this.mCellIdentityWcdma = ci.mCellIdentityWcdma.copy(); in CellInfoWcdma()
45 this.mCellSignalStrengthWcdma = ci.mCellSignalStrengthWcdma.copy(); in CellInfoWcdma()
DCellInfoLte.java42 public CellInfoLte(CellInfoLte ci) { in CellInfoLte() argument
43 super(ci); in CellInfoLte()
44 this.mCellIdentityLte = ci.mCellIdentityLte.copy(); in CellInfoLte()
45 this.mCellSignalStrengthLte = ci.mCellSignalStrengthLte.copy(); in CellInfoLte()
DCellInfo.java68 protected CellInfo(CellInfo ci) { in CellInfo() argument
69 this.mRegistered = ci.mRegistered; in CellInfo()
70 this.mTimeStampType = ci.mTimeStampType; in CellInfo()
71 this.mTimeStamp = ci.mTimeStamp; in CellInfo()
DCellIdentityLte.java68 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac) { in CellIdentityLte() argument
69 this(mcc, mnc, ci, pci, tac, Integer.MAX_VALUE); in CellIdentityLte()
83 public CellIdentityLte (int mcc, int mnc, int ci, int pci, int tac, int earfcn) { in CellIdentityLte() argument
86 mCi = ci; in CellIdentityLte()

123