Searched refs:ci (Results 26 - 50 of 88) sorted by relevance

1234

/frameworks/base/telephony/java/android/telephony/
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 DCellInfo.java99 protected CellInfo(CellInfo ci) { argument
100 this.mRegistered = ci.mRegistered;
101 this.mTimeStampType = ci.mTimeStampType;
102 this.mTimeStamp = ci.mTimeStamp;
103 this.mCellConnectionStatus = ci.mCellConnectionStatus;
H A DTelephonyScanManager.java136 CellInfo[] ci = new CellInfo[parcelables.length];
138 ci[i] = (CellInfo) parcelables[i];
141 Rlog.d(TAG, "onResults: " + ci.toString());
142 callback.onResults((List<CellInfo>) Arrays.asList(ci));
H A DCellIdentityLte.java59 * @param ci 28-bit Cell Identity
65 public CellIdentityLte(int mcc, int mnc, int ci, int pci, int tac) { argument
66 this(ci, pci, tac, Integer.MAX_VALUE, Integer.MAX_VALUE, String.valueOf(mcc),
74 * @param ci 28-bit Cell Identity
81 public CellIdentityLte(int mcc, int mnc, int ci, int pci, int tac, int earfcn) { argument
82 this(ci, pci, tac, earfcn, Integer.MAX_VALUE, String.valueOf(mcc), String.valueOf(mnc),
88 * @param ci 28-bit Cell Identity
100 public CellIdentityLte(int ci, int pci, int tac, int earfcn, int bandwidth, String mccStr, argument
103 mCi = ci;
/frameworks/base/packages/ExtServices/src/android/ext/services/notification/
H A DAssistant.java138 ChannelImpressions ci = createChannelImpressionsWithThresholds();
139 ci.populateFromXml(parser);
141 ci.append(mkeyToImpressions.get(key));
142 mkeyToImpressions.put(key, ci);
201 ChannelImpressions ci = mkeyToImpressions.getOrDefault(key,
203 if (ranking.getImportance() > IMPORTANCE_MIN && ci.shouldTriggerBlock()) {
207 mkeyToImpressions.put(key, ci);
223 ChannelImpressions ci = mkeyToImpressions.getOrDefault(key,
226 ci.incrementViews();
236 ci
323 insertImpressions(String key, ChannelImpressions ci) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DNativeCrashListener.java76 CrashInfo ci = new CrashInfo();
77 ci.exceptionClassName = "Native crash";
78 ci.exceptionMessage = Os.strsignal(mSignal);
79 ci.throwFileName = "unknown";
80 ci.throwClassName = "unknown";
81 ci.throwMethodName = "unknown";
82 ci.stackTrace = mCrashReport;
85 mAm.handleApplicationCrashInner("native_crash", mApp, mApp.processName, ci);
H A DCompatModePackages.java178 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
179 final boolean mayCompat = !ci.alwaysSupportsScreen()
180 && !ci.neverSupportsScreen();
200 CompatibilityInfo ci = new CompatibilityInfo(ai, globalConfig.screenLayout,
203 //Slog.i(TAG, "*********** COMPAT FOR PKG " + ai.packageName + ": " + ci);
204 return ci;
328 CompatibilityInfo ci = compatibilityInfoForPackageLocked(ai);
329 if (ci.alwaysSupportsScreen()) {
334 if (ci.neverSupportsScreen()) {
348 ci
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
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.java95 CommandsInterface ci) {
110 mCi = ci;
121 public void update (IccCardApplicationStatus as, Context c, CommandsInterface ci) { argument
130 mCi = ci;
148 mIccRecords = createIccRecords(as.app_type, c, ci);
182 private IccRecords createIccRecords(AppType type, Context c, CommandsInterface ci) { argument
184 return new SIMRecords(this, c, ci);
186 return new RuimRecords(this, c, ci);
188 return new IsimUiccRecords(this, c, ci);
92 UiccCardApplication(UiccProfile uiccProfile, IccCardApplicationStatus as, Context c, CommandsInterface ci) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/euicc/apdu/
H A DCloseLogicalChannelInvocation.java39 CloseLogicalChannelInvocation(CommandsInterface ci) { argument
40 mCi = ci;
H A DOpenLogicalChannelInvocation.java42 OpenLogicalChannelInvocation(CommandsInterface ci) { argument
43 mCi = ci;
H A DTransmitApduLogicalChannelInvocation.java43 TransmitApduLogicalChannelInvocation(CommandsInterface ci) { argument
44 mCi = ci;
H A DApduSender.java70 public ApduSender(CommandsInterface ci, String aid, boolean supportExtendedApdu) { argument
73 mOpenChannel = new OpenLogicalChannelInvocation(ci);
74 mCloseChannel = new CloseLogicalChannelInvocation(ci);
75 mTransmitApdu = new TransmitApduLogicalChannelInvocation(ci);
/frameworks/base/libs/hwui/tests/common/scenes/
H A DTvApp.cpp87 for (size_t ci = 0; ci < numCards; ci++) {
88 updateCard(ci, frameNr);
189 void updateCard(int ci, int curFrame) {
191 sp<RenderNode> card = mCards[ci];
199 sp<RenderNode> image = mImages[ci];
200 sp<RenderNode> infoArea = mInfoAreas[ci];
206 sp<RenderNode> overlay = mOverlays[ci];
223 sk_sp<Bitmap> bitmap = mCachedBitmaps[ci];
[all...]
H A DRoundRectClippingAnimation.cpp31 int ci = 0; variable
35 auto color = BrightColors[ci++ % BrightColorsCount];
/frameworks/base/tests/net/java/android/net/
H A DIpSecConfigTest.java101 private void assertParcelingIsLossless(IpSecConfig ci) throws Exception { argument
103 ci.writeToParcel(p, 0);
106 assertTrue(IpSecConfig.equals(co, ci));
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java92 ICreateInfo ci = new CreateInfoAdapter() {
103 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
122 ICreateInfo ci = new CreateInfoAdapter() {
145 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
175 ICreateInfo ci = new CreateInfoAdapter() {
193 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
218 ICreateInfo ci = new CreateInfoAdapter() {
228 AsmGenerator agen = new AsmGenerator(mLog, mOsDestJar, ci);
229 Set<String> excludedClasses = ci.getExcludedClasses();
255 ICreateInfo 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
63 mCi = ci;
78 CommandsInterface ci, Handler h, int what, Object obj) {
81 sInstance = new CdmaSubscriptionSourceManager(context, ci);
77 getInstance(Context context, CommandsInterface ci, Handler h, int what, Object obj) argument
/frameworks/av/media/ndk/
H A DNdkMediaCodec.cpp845 size_t AMediaCodecCryptoInfo_getNumSubSamples(AMediaCodecCryptoInfo* ci) { argument
846 return ci->numsubsamples;
850 media_status_t AMediaCodecCryptoInfo_getKey(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
851 if (!ci) {
857 memcpy(dst, ci->key, 16);
862 media_status_t AMediaCodecCryptoInfo_getIV(AMediaCodecCryptoInfo* ci, uint8_t *dst) { argument
863 if (!ci) {
869 memcpy(dst, ci->iv, 16);
874 cryptoinfo_mode_t AMediaCodecCryptoInfo_getMode(AMediaCodecCryptoInfo* ci) { argument
875 if (!ci) {
882 AMediaCodecCryptoInfo_getClearBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
894 AMediaCodecCryptoInfo_getEncryptedBytes(AMediaCodecCryptoInfo* ci, size_t *dst) argument
[all...]
/frameworks/base/telephony/java/android/telephony/mbms/
H A DMbmsUtils.java49 public static ComponentName toComponentName(ComponentInfo ci) { argument
50 return new ComponentName(ci.packageName, ci.name);
/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 447 milliseconds

1234