/packages/modules/AdServices/adservices/service-core/java/com/android/adservices/service/measurement/reporting/ |
D | DebugReport.java | 31 private final JSONObject mBody; field in DebugReport 44 mBody = body; in DebugReport() 56 && Objects.equals(mBody, key.mBody) in equals() 63 return Objects.hash(mType, mBody, mEnrollmentId, mRegistrationOrigin); in hashCode() 78 return mBody; in getBody() 94 jsonObject.put("body", mBody); in toPayloadJson() 102 private JSONObject mBody; field in DebugReport.Builder 123 mBody = new JSONObject(body); in setBody() 132 mBody = body; in setBody() 152 if (mType == null || mBody == null) { in build() [all …]
|
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/ |
D | DetailsContentPresenter.java | 55 final TextView mBody; field in DetailsContentPresenter.ViewHolder 84 final int bodyLines = mBody.getLineCount(); 110 int oldMaxLines = mBody.getMaxLines(); 111 mBody.setMaxLines(bodyLines); 126 if (mBody.getMaxLines() != maxLines) { 127 mBody.setMaxLines(maxLines); 156 mBody = (TextView) view.findViewById(R.id.dvr_details_description_body); in ViewHolder() 202 mBodyFontMetricsInt = getFontMetricsInt(mBody); in ViewHolder() 228 return mBody; in getBody() 325 vh.mBody.setVisibility(View.GONE); in onBindViewHolder() [all …]
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/src/com/android/adservices/service/common/cache/ |
D | FledgeHttpCacheTest.java | 69 private String mBody; field in FledgeHttpCacheTest 88 mBody = "This is the Google home page"; in setup() 102 .setResponseBody(mBody) in setup() 123 mCache.put(mUrl, mBody, mCachingPropertiesMap, mResponseHeadersMap); in test_CachePutEntry_Succeeds() 131 mBody, in test_CachePutEntry_Succeeds() 145 mCache.put(mUrl, mBody, skipCacheMap, mResponseHeadersMap); in test_CachePutEntryNoCache_SkipsCache() 155 mCache.put(mUrl, mBody, skipCacheMap, mResponseHeadersMap); in test_CachePutEntryNoStoreCache_SkipsCache() 168 mBody, in test_CacheGetEntry_Succeeds() 216 mCache.put(mUrl, mBody, cachePropertiesMap, mResponseHeadersMap); in test_MaxAgeUpperBounded_GlobalMaxAge() 231 mCache.put(mUrl, mBody, cachePropertiesMap, mResponseHeadersMap); in test_MaxAgeLowerBounded_RequestMaxAge() [all …]
|
/packages/providers/MediaProvider/tools/dialogs/src/com/android/providers/media/tools/dialogs/ |
D | DialogsActivity.java | 46 private LinearLayout mBody; field in DialogsActivity 88 mBody = new LinearLayout(this); in onCreate() 89 mBody.setOrientation(LinearLayout.VERTICAL); in onCreate() 90 setContentView(mBody); in onCreate() 96 mBody.addView(header); in onCreate() 100 mBody.addView(mSpinners); in onCreate() 184 mBody.addView(button); in addAction()
|
/packages/modules/NeuralNetworks/runtime/ |
D | ExecutionPlan.h | 574 ~ExecutionPlan() { delete mBody; } in ~ExecutionPlan() local 725 bool isValid() const { return mState != EMPTY && mBody != nullptr && mBody->mSuccessfulFinish; } in isValid() 739 CHECK(mBody != nullptr); in forEachStepRoleOfInput() 740 mBody->forEachStepRoleOfInput(index, callback); in forEachStepRoleOfInput() 743 CHECK(mBody != nullptr); in forEachStepRoleOfOutput() 744 mBody->forEachStepRoleOfOutput(index, callback); in forEachStepRoleOfOutput() 973 Body* mBody = nullptr; variable 976 CHECK(mBody != nullptr); in simple() 977 return static_cast<SimpleBody*>(mBody); in simple() 981 CHECK(mBody != nullptr); in simple() [all …]
|
D | ExecutionPlan.cpp | 1164 CHECK(mBody != nullptr); in finish() 1165 return mBody->finish(&getSourceModels(), executionPreference, priority, deadline, metadata, in finish() 1900 mBody = new CompoundBody(this); in becomeCompoundIfEmpty() 1941 mBody = new SimpleBody(device, model, mCacheInfo, mToken); in becomeSingleStep() 1960 if (mBody) { in dump() 1961 mBody->dump(); in dump() 1968 if (mBody) { in reset() 1969 delete mBody; in reset() 1970 mBody = nullptr; in reset() 1984 CHECK(mBody); in forTest_getKind() [all …]
|
/packages/modules/RemoteKeyProvisioning/app/tests/util/src/com/android/rkpdapp/testutil/ |
D | FakeRkpServer.java | 90 private final ByteString mBody; field in FakeRkpServer.Response 107 mBody = ByteString.copyFrom(body); in Response() 123 return NanoHTTPD.newFixedLengthResponse(status, mMime, mBody.newInput(), mBody.size()); in toNanoResponse()
|
/packages/modules/OnDevicePersonalization/federatedcompute/src/com/android/federatedcompute/services/http/ |
D | FederatedComputeHttpRequest.java | 38 private ByteString mBody; field in FederatedComputeHttpRequest 48 this.mBody = body; in FederatedComputeHttpRequest() 84 return mBody; in getBody()
|
/packages/apps/Car/Cluster/DirectRenderingCluster/src/android/car/cluster/ |
D | PhoneFragmentViewModel.java | 40 private LiveData<String> mBody; field in PhoneFragmentViewModel 58 mBody = new SelfRefreshDescriptionLiveData( in PhoneFragmentViewModel() 75 return mBody; in getBody()
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
D | DataAction.java | 59 private CharSequence mBody; field in DataAction 102 mBody = item.buildDataStringForDisplay(context, kind); in DataAction() 255 return mBody; in getBody() 327 if (!MoreContactUtils.shouldCollapse(mMimeType, mBody, that.mMimeType, that.mBody)) { in shouldCollapseWith()
|
/packages/apps/Messaging/src/android/support/v7/mms/pdu/ |
D | PduParser.java | 66 private PduBody mBody = null; field in PduParser 131 mBody = parseParts(mPduDataStream); in parse() 132 if (null == mBody) { in parse() 143 SendReq sendReq = new SendReq(mHeaders, mBody); in parse() 170 new RetrieveConf(mHeaders, mBody); in parse() 187 PduPart firstPart = mBody.getPart(0); in parse() 188 mBody.removeAll(); in parse() 189 mBody.addPart(0, firstPart); in parse()
|
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
D | PduParser.java | 88 private PduBody mBody = null; field in PduParser 153 mBody = parseParts(mPduDataStream); in parse() 154 if (null == mBody) { in parse() 165 SendReq sendReq = new SendReq(mHeaders, mBody); in parse() 192 new RetrieveConf(mHeaders, mBody); in parse() 212 PduPart firstPart = mBody.getPart(0); in parse() 213 mBody.removeAll(); in parse() 214 mBody.addPart(0, firstPart); in parse()
|
/packages/apps/UniversalMediaPlayer/java/com/android/pump/util/ |
D | Http.java | 292 private final byte[] mBody; field in Http.HttpError 303 mBody = body; in HttpError() 319 return mBody; in getResponseBody()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/action/ |
D | SyncMessageBatch.java | 130 if (sms.mBody == null) { in storeSms() 133 sms.mBody = ""; in storeSms() 179 sms.mBody); in storeSms()
|
/packages/apps/Messaging/src/com/android/messaging/sms/ |
D | DatabaseMessages.java | 138 public String mBody; field in DatabaseMessages.SmsMessage 160 mBody = cursor.getString(INDEX_BODY); in load() 224 mBody = in.readString(); in SmsMessage() 255 out.writeString(mBody); in writeToParcel()
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
D | QuickResponseActivity.kt | 84 private inner class QueryThread internal constructor(var mEventId: Long, var mBody: String?) : variable in com.android.calendar.alerts.QuickResponseActivity.QueryThread
|
/packages/modules/CaptivePortalLogin/tests/src/com/android/captiveportallogin/ |
D | CaptivePortalLoginActivityTest.java | 760 private final String mBody; field in CaptivePortalLoginActivityTest.HttpServer.MockResponse 765 this.mBody = body; in MockResponse() 820 + "<body>" + mockResponse.mBody + "</body>" in serve()
|