Searched refs:mName (Results 101 - 125 of 345) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/include/
H A DHTTPBase.h60 return mName;
65 String8 mName; member in struct:android::HTTPBase
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DFileSource.h51 return mName;
64 String8 mName; member in class:android::FileSource
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DALooper.h58 return mName.c_str();
75 AString mName; member in struct:android::ALooper
/frameworks/compile/libbcc/include/bcc/
H A DSource.h36 const std::string mName; // A unique name member in class:bcc::Source
71 const std::string& getName() const { return mName; }
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DBuiltInVariableExpr.java54 return new KCode().app(mName);
71 return model.builtInVariable(mName, mUserDefinedType, mAccessCode);
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyEffects.h92 mName(strdup(name)),
95 mName(strdup(orig.mName)),
113 free(mName);
118 char *mName; member in class:android::AudioPolicyEffects::EffectDesc
/frameworks/base/core/java/android/app/
H A DNotificationChannelGroup.java48 private CharSequence mName; field in class:NotificationChannelGroup
63 this.mName = name != null ? getTrimmedString(name.toString()) : null;
75 mName = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
94 TextUtils.writeToParcel(mName, dest, flags);
109 return mName;
199 ", mName=" + mName +
/frameworks/base/services/core/java/com/android/server/trust/
H A DTrustAgentWrapper.java88 private final ComponentName mName; field in class:TrustAgentWrapper
111 && mName.equals(component)) {
125 + mName.flattenToShortString());
153 mTrustManagerService.mArchive.logGrantTrust(mUserId, mName,
159 if (DEBUG) Slog.d(TAG, "Trust timed out : " + mName.flattenToShortString());
160 mTrustManagerService.mArchive.logTrustTimeout(mUserId, mName);
168 mTrustManagerService.mArchive.logRevokeTrust(mUserId, mName);
173 Slog.w(TAG, "Connection attempt to agent " + mName.flattenToShortString()
176 mTrustManagerService.resetAgent(mName, mUserId);
185 + "enabled features: " + mName
[all...]
/frameworks/base/lowpan/java/android/net/lowpan/
H A DLowpanIdentity.java77 mIdentity.mName = stringPrep.prepare(name, StringPrep.DEFAULT);
78 mIdentity.mRawName = mIdentity.mName.getBytes(StandardCharsets.UTF_8);
90 mIdentity.mName = new String(name, StandardCharsets.UTF_8);
92 String nameCheck = stringPrep.prepare(mIdentity.mName, StringPrep.DEFAULT);
102 mIdentity.mName = "«" + escape(name) + "»";
137 private String mName = ""; field in class:LowpanIdentity
148 return mName;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameQueue.java140 private String mName; field in class:FrameQueue
172 return mName;
181 mName = name;
H A DInputPort.java39 private String mName; field in class:InputPort
247 return mName;
271 return mFilter.getName() + ":" + mName;
277 mName = name;
/frameworks/compile/slang/
H A Dslang_rs_export_foreach.h48 std::string mName; member in class:slang::RSExportForEach
77 mName(Name.data(), Name.size()), mOrdinal(~unsigned(0)),
107 return mName;
H A Dslang_rs_reflection_state.cpp161 std::cout << " (Field) name=\"" << field.mName << "\" ("
171 std::cout << " (Var) name=\"" << var.mName << "\" type=\"" << var.mType.str()
193 std::cout << " name=\"" << fe.mName << "\" kernel=" << fe.mIsKernel
214 std::cout << " (Invokable) name=\"" << inv.mName << "\"" << std::endl;
223 std::cout << " (Reduce) name=\"" << red.mName
282 foreach.mName = Name;
301 if (foreach.mName != Name) {
543 << mFiles.Current().mForEaches[EF->getOrdinal()].mName
562 << file.mRSSourceFileName << fe.mName;
581 invokable.mName
[all...]
/frameworks/native/libs/gui/
H A DBufferItemConsumer.cpp27 #define BI_LOGV(x, ...) ALOGV("[%s] " x, mName.string(), ##__VA_ARGS__)
28 //#define BI_LOGD(x, ...) ALOGD("[%s] " x, mName.string(), ##__VA_ARGS__)
29 //#define BI_LOGI(x, ...) ALOGI("[%s] " x, mName.string(), ##__VA_ARGS__)
30 //#define BI_LOGW(x, ...) ALOGW("[%s] " x, mName.string(), ##__VA_ARGS__)
31 #define BI_LOGE(x, ...) ALOGE("[%s] " x, mName.string(), ##__VA_ARGS__)
58 mName = name;
/frameworks/native/services/surfaceflinger/
H A DLayerRejecter.cpp39 mName(name),
97 mName, bufWidth, bufHeight, item.mTransform, item.mScalingMode, mFront.active.w,
108 mName, bufWidth, bufHeight, mFront.active.w, mFront.active.h);
/frameworks/rs/
H A DrsObjectBase.h50 return mName;
52 void assignName(const char *s) {mName = s;}
90 const char* mName; member in class:android::renderscript::ObjectBase
/frameworks/av/services/camera/libcameraservice/device1/
H A DCameraHardwareInterface.cpp31 ALOGI("Destroying camera %s", mName.string());
40 ALOGI("Opening camera %s", mName.string());
42 status_t ret = manager->openSession(mName.string(), this, &mHidlDevice);
444 ALOGV("%s(%s) buf %p", __FUNCTION__, mName.string(), buf.get());
473 ALOGV("%s(%s)", __FUNCTION__, mName.string());
478 ALOGV("%s(%s)", __FUNCTION__, mName.string());
486 ALOGV("%s(%s)", __FUNCTION__, mName.string());
494 ALOGV("%s(%s)", __FUNCTION__, mName.string());
503 ALOGV("%s(%s)", __FUNCTION__, mName.string());
513 ALOGV("%s(%s)", __FUNCTION__, mName
[all...]
/frameworks/av/media/mtp/
H A DMtpObjectInfo.h44 char* mName; member in class:android::MtpObjectInfo
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioPort.h39 mName(name), mType(type), mRole(role), mFlags(AUDIO_OUTPUT_FLAG_NONE) {}
43 void setName(const String8 &name) { mName = name; }
44 const String8 &getName() const { return mName; }
149 String8 mName; member in class:android::AudioPort
/frameworks/base/cmds/dpm/src/com/android/commands/dpm/
H A DDpm.java51 private String mName = ""; field in class:Dpm
128 mName = nextArgRequired();
148 if (!mDevicePolicyManager.setDeviceOwner(mComponent, mName, mUserId)) {
176 if (!mDevicePolicyManager.setProfileOwner(mComponent, mName, mUserId)) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java54 private String mName; field in class:CachedBluetoothDevice
281 Log.i(TAG, "Failed to connect " + profile.toString() + " to " + mName);
383 return mName;
390 if (mName == null) {
391 mName = name;
392 if (mName == null || TextUtils.isEmpty(mName)) {
393 mName = mDevice.getAddress();
404 // Prevent mName to be set to null if setName(null) is called
405 if (name != null && !TextUtils.equals(name, mName)) {
[all...]
/frameworks/base/tests/SurfaceComposition/src/android/surfacecomposition/
H A DCustomSurfaceView.java45 private String mName; field in class:CustomSurfaceView
92 mName = name;
138 int textWidth = (int)(paint.measureText(mName) + 0.5f);
144 canvas.drawText(mName, x, y, paint);
/frameworks/base/tools/aapt/
H A DApkBuilder.cpp85 if (mName.size() > 0) {
86 mName.append(",");
103 mName.append(configStr);
118 fprintf(stderr, "APK Split '%s'\n", mName.string());
/frameworks/opt/net/lowpan/libandroid_net_lowpan/include/android/net/lowpan/
H A DLowpanChannelInfo.h51 std::string mName; member in class:android::net::lowpan::LowpanChannelInfo
/frameworks/rs/cpp/
H A DBaseObj.cpp56 mName = name;

Completed in 674 milliseconds

1234567891011>>