Home
last modified time | relevance | path

Searched refs:errMsg (Results 1 – 13 of 13) sorted by relevance

/hardware/qcom/sdm845/data/ipacfg-mgr/hal/src/
DHAL.cpp117 ret.errMsg = "Failed Input Checks: " + customErr; in makeInputCheckFailure()
126 ret.errMsg = "Too Many Prefixes Provided"; in ipaResultToBoolResult()
129 ret.errMsg = "Unsupported by Hardware"; in ipaResultToBoolResult()
132 ret.errMsg = "Failed Input Checks"; in ipaResultToBoolResult()
135 ret.errMsg = "Hardware did not accept"; in ipaResultToBoolResult()
138 ret.errMsg = "Try Again"; in ipaResultToBoolResult()
141 ret.errMsg = "Successful"; in ipaResultToBoolResult()
144 ret.errMsg = "Successful: Was a duplicate configuration"; in ipaResultToBoolResult()
147 ret.errMsg = "Successful: No action needed"; in ipaResultToBoolResult()
150 ret.errMsg = "Successful: Performed optimized version of action"; in ipaResultToBoolResult()
[all …]
/hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
DHAL.cpp117 ret.errMsg = "Failed Input Checks: " + customErr; in makeInputCheckFailure()
126 ret.errMsg = "Too Many Prefixes Provided"; in ipaResultToBoolResult()
129 ret.errMsg = "Unsupported by Hardware"; in ipaResultToBoolResult()
132 ret.errMsg = "Failed Input Checks"; in ipaResultToBoolResult()
135 ret.errMsg = "Hardware did not accept"; in ipaResultToBoolResult()
138 ret.errMsg = "Try Again"; in ipaResultToBoolResult()
141 ret.errMsg = "Successful"; in ipaResultToBoolResult()
144 ret.errMsg = "Successful: Was a duplicate configuration"; in ipaResultToBoolResult()
147 ret.errMsg = "Successful: No action needed"; in ipaResultToBoolResult()
150 ret.errMsg = "Successful: Performed optimized version of action"; in ipaResultToBoolResult()
[all …]
/hardware/interfaces/tetheroffload/control/1.0/
DIOffloadControl.hal41 * @return errMsg a human readable string if eror has occured.
48 initOffload(ITetheringOffloadCallback cb) generates (bool success, string errMsg);
58 * @return errMsg a human readable string if eror has occured.
63 stopOffload() generates (bool success, string errMsg);
74 * @return errMsg a human readable string if eror has occured.
78 setLocalPrefixes(vec<string> prefixes) generates (bool success, string errMsg);
125 * @return errMsg a human readable string if eror has occured.
127 setDataLimit(string upstream, uint64_t limit) generates (bool success, string errMsg);
159 * @return errMsg a human readable string if eror has occured.
164 generates (bool success, string errMsg);
[all …]
/hardware/interfaces/tetheroffload/config/1.0/vts/functional/
DVtsHalTetheroffloadConfigV1_0TargetTest.cpp42 [&](bool success, const hidl_string& errMsg) { ASSERT_TRUE(success) << errMsg.c_str(); }
45 [&](bool success, const hidl_string& errMsg) { ASSERT_FALSE(success) << errMsg.c_str(); }
/hardware/interfaces/boot/1.0/default/
DBootControl.cpp50 cr.errMsg = strerror(-ret); in markBootSuccessful()
59 cr.errMsg = strerror(-ret); in setActiveBootSlot()
68 cr.errMsg = strerror(-ret); in setSlotAsUnbootable()
/hardware/interfaces/tetheroffload/control/1.0/vts/functional/
DVtsHalTetheroffloadControlV1_0TargetTest.cpp60 [&](bool success, std::string errMsg) { \
61 std::string msg = StringPrintf("unexpected error: %s", errMsg.c_str()); \
66 [&](bool success, std::string errMsg) { \
67 std::string msg = StringPrintf("expected error: %s", errMsg.c_str()); \
185 auto init_cb = [&](bool success, std::string errMsg) { in initOffload() argument
187 success ? "succeeded" : "failed", errMsg.c_str()); in initOffload()
200 auto cb = [&](bool success, const hidl_string& errMsg) { in stopOffload() argument
203 ASSERT_EQ(false, success) << "Unexpectedly able to stop offload: " << errMsg; in stopOffload()
206 ASSERT_EQ(true, success) << "Unexpectedly failed to stop offload: " << errMsg; in stopOffload()
/hardware/interfaces/tetheroffload/config/1.0/
DIOffloadConfig.hal33 * @return errMsg a human readable string if eror has occured.
35 setHandles(handle fd1, handle fd2) generates (bool success, string errMsg);
/hardware/google/easel/amber/camera/libhdrplusclient/include/
DEaselManagerClient.h150 virtual void onEaselFatalError(std::string errMsg) = 0;
/hardware/interfaces/boot/1.0/
Dtypes.hal25 string errMsg;
/hardware/qcom/data/ipacfg-mgr/msm8998/hal/inc/
DHAL.h170 string errMsg; member
/hardware/qcom/sdm845/data/ipacfg-mgr/hal/inc/
DHAL.h167 string errMsg; member
/hardware/qcom/camera/msm8998/QCamera2/HAL3/
DQCamera3HWI.h898 void onEaselFatalError(std::string errMsg);
DQCamera3HWI.cpp16141 void QCamera3HardwareInterface::onEaselFatalError(std::string errMsg) in onEaselFatalError() argument
16143 ALOGE("%s: Got an Easel fatal error: %s", __FUNCTION__, errMsg.c_str()); in onEaselFatalError()