Home
last modified time | relevance | path

Searched refs:mName (Results 1 – 25 of 34) sorted by relevance

12

/system/tools/hidl/c2hal/
DDeclaration.cpp27 : mName(name) in Declaration()
33 return mName; in getName()
36 mName = name; in setName()
40 mName = StringHelper::RTrim(mName, "_t"); in forceCamelCase()
41 mName = StringHelper::ToCamelCase(mName); in forceCamelCase()
45 mName = StringHelper::RTrim(mName, "_t"); in forcePascalCase()
46 mName = StringHelper::ToPascalCase(mName); in forcePascalCase()
50 mName = StringHelper::RTrim(mName, "_t"); in forceUpperSnakeCase()
51 mName = StringHelper::ToUpperSnakeCase(mName); in forceUpperSnakeCase()
DDeclaration.h59 std::string mName;
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
DSimpleParcelable.java23 private String mName; field in SimpleParcelable
28 mName = name; in SimpleParcelable()
35 dest.writeString(mName); in writeToParcel()
40 mName = source.readString(); in readFromParcel()
52 if ((mName == null && p.mName != null) || in equals()
53 (mName != null && !mName.equals(p.mName))) { in equals()
60 return "SimpleParcelable(" + mName + ", " + mNumber + ")"; in toString()
/system/tools/hidl/
DAnnotation.cpp28 AnnotationParam::AnnotationParam(const std::string& name) : mName(name) {} in AnnotationParam()
31 return mName; in getName()
38 << mName << " must be a string"; in getSingleString()
55 CHECK(false) << mName << " must be of boolean value (true/false)."; in getSingleBool()
68 CHECK_EQ(mValues->size(), 1u) << mName << " requires one value but has multiple"; in getSingleValue()
73 : mName(name), mParams(params) {} in Annotation()
76 return mName; in name()
94 out << "@" << mName; in dump()
DFmqType.cpp29 : TemplatedType(parent, definedName), mNamespace(nsp), mName(name) {} in FmqType()
36 return mName; in templatedTypeName()
42 mName + "<" + mElementType->getCppStackType(true) + ">"; in fullName()
173 if (mName == "MQDescriptorSync") { in getVtsType()
175 } else if (mName == "MQDescriptorUnsync") { in getVtsType()
DAnnotation.h45 const std::string mName;
72 std::string mName;
DReference.h155 : Reference<T>(reference, location), mName(name) {} in NamedReference()
157 const std::string& name() const { return mName; } in name()
163 const std::string mName;
DFmqType.h73 std::string mName; member
DMethod.cpp38 : mName(name), in Method()
62 return mName; in name()
141 Method* method = new Method(mName, mArgs, mResults, mOneway, mAnnotations, location()); in copySignature()
DMethod.h112 std::string mName;
/system/libvintf/
DHalInterface.cpp26 if (lft.mName != rgt.mName) return false; in operator ==()
34 if (!func(mName, instance, false /* isRegex */)) { in forEachInstance()
39 if (!func(mName, instance, true /* isRegex */)) { in forEachInstance()
/system/tools/hidl/utils/
DFQName.cpp45 mName = name; in setTo()
60 mName(other.mName), in FQName()
68 return !mPackage.empty() && !version().empty() && !mName.empty(); in isFullyQualified()
73 || (!mName.empty() && !mValueName.empty()); in isValidValueName()
77 return !mName.empty() && mName[0] == 'I' && mName.find('.') == std::string::npos; in isInterfaceName()
187 mName = name.string(); in setTo()
199 if (!mValueName.empty() && mName.empty()) goto fail; in setTo()
217 if (!mName.empty() && !version().empty()) { in getRelativeFQName()
222 if (!mName.empty()) { in getRelativeFQName()
223 out.append(mName); in getRelativeFQName()
[all …]
/system/libvintf/include/vintf/
DHalInterface.h33 : mName(std::move(name)), mInstances(std::move(instances)) {} in HalInterface()
35 : mName(name), mInstances(instances) {} in HalInterface()
48 const std::string& name() const { return mName; } in name()
54 std::string mName; member
DXmlFile.h31 inline const std::string& name() const { return mName; } in name()
35 std::string mName;
/system/core/libutils/
DStopWatch.cpp33 StopWatch::StopWatch(const char* name, int clock) : mName(name), mClock(clock) { in StopWatch()
41 ALOGD("StopWatch %s (us): %" PRId64 " ", mName, ns2us(elapsed)); in ~StopWatch()
51 return mName; in name()
/system/chre/util/include/chre/util/
Dscope_timer_impl.h25 : mName(name), mStartTime(SystemTime::getMonotonicTime()) {} in ScopeTimer()
30 mName, (stopTime - mStartTime).toRawNanoseconds()); in ~ScopeTimer()
Dscope_timer.h45 const char *mName;
/system/netd/libnetdutils/
DThreadUtilTest.cpp37 explicit NoopRun(const std::string& name = "") : mName(name) { instanceNum++; } in NoopRun()
51 std::string threadName() { return mName; } in threadName()
76 std::string mName; member in android::netdutils::__anon9141aaf60111::NoopRun
/system/hardware/interfaces/suspend/1.0/default/
DSystemSuspend.cpp63 : mReleased(), mSystemSuspend(systemSuspend), mName(name), mPid(pid) { in WakeLock()
64 mSystemSuspend->incSuspendCounter(mName); in WakeLock()
78 mSystemSuspend->decSuspendCounter(mName); in releaseOnce()
79 mSystemSuspend->updateWakeLockStatOnRelease(mName, mPid, getTimeNow()); in releaseOnce()
DSystemSuspend.h77 std::string mName; variable
/system/core/libutils/include/utils/
DStopWatch.h42 const char* mName;
/system/incremental_delivery/libdataloader/include/
Ddataloader.h95 const std::string& name() const { return mName; } in name()
104 std::string const mName; member
/system/libhidl/base/include/hidl/
DHidlSupport.h225 hidl_memory() : mHandle(nullptr), mSize(0), mName("") { in hidl_memory()
233 : mHandle(std::move(handle)), mSize(size), mName(name) {} in hidl_memory()
244 mName(name) in hidl_memory()
257 mName = other.mName;
273 mName = std::move(other.mName);
289 return mName; in name()
307 hidl_string mName; member
/system/chre/core/
Dgnss_manager.cc52 mName = "Location"; in GnssSession()
58 mName = "Measurement"; in GnssSession()
118 mName, mCurrentInterval.getMilliseconds()); in logStateToBuffer()
/system/chre/core/include/chre/core/
Dgnss_manager.h134 const char *mName; variable

12