/foundation/distributedhardware/distributed_camera/services/cameraservice/sourceservice/test/unittest/common/distributedcamera/ |
H A D | dcamera_source_hidumper_test.cpp | 63 std::string result; in HWTEST_F() local 64 bool ret = DcameraSourceHidumper::GetInstance().Dump(args, result); in HWTEST_F() 82 std::string result; in HWTEST_F() local 83 bool ret = DcameraSourceHidumper::GetInstance().Dump(args, result); in HWTEST_F() 99 std::string result; in HWTEST_F() local 100 bool ret = DcameraSourceHidumper::GetInstance().Dump(args, result); in HWTEST_F() 116 std::string result; in HWTEST_F() local 117 bool ret = DcameraSourceHidumper::GetInstance().Dump(args, result); in HWTEST_F() 133 std::string result; in HWTEST_F() local 134 bool ret = DcameraSourceHidumper::GetInstance().Dump(args, result); in HWTEST_F() 150 std::string result; HWTEST_F() local 167 std::string result; HWTEST_F() local 184 std::string result; HWTEST_F() local [all...] |
/test/ostest/wukong/common/src/ |
H A D | app_manager.cpp | 82 int result; in StartAbilityByBundleInfo() local 91 result = OHOS::ERR_INVALID_VALUE; in StartAbilityByBundleInfo() 95 result = OHOS::AAFwk::AbilityManagerClient::GetInstance()->StartAbility(want); in StartAbilityByBundleInfo() 96 if (result == OHOS::ERR_OK) { in StartAbilityByBundleInfo() 103 TRACK_LOG_STR("result %s", std::to_string(result).c_str()); in StartAbilityByBundleInfo() 104 return result; in StartAbilityByBundleInfo() 111 int result; in StartAbilityByUriAndType() local 114 result = OHOS::AAFwk::AbilityManagerClient::GetInstance()->StartAbility(want); in StartAbilityByUriAndType() 115 if (result in StartAbilityByUriAndType() 128 int result; StartAbilityByAbilityAndUri() local [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | setjmpndk1.cpp | 42 napi_value result = nullptr;
in Longjmp() local 44 napi_create_int32(env, PARAM_UNNORMAL, &result);
in Longjmp() 46 napi_create_int32(env, PARAM_0, &result);
in Longjmp() 48 return result;
in Longjmp() 61 napi_value result = nullptr;
in _Longjmp() local 63 napi_create_int32(env, PARAM_UNNORMAL, &result);
in _Longjmp() 65 napi_create_int32(env, PARAM_0, &result);
in _Longjmp() 67 return result;
in _Longjmp() 72 napi_value result = nullptr;
in _Setjmp() local 78 napi_create_int32(env, PARAM_UNNORMAL, &result);
in _Setjmp() [all...] |
/test/xts/acts/graphic/graphicEffectFliterTest/ |
H A D | NativeDisplaySoloistTest.cpp | 88 int32_t result = OH_DisplaySoloist_Start(nullptr, callback, nullptr); in HWTEST_F() local 89 EXPECT_EQ(SOLOIST_ERROR, result); in HWTEST_F() 102 int32_t result = OH_DisplaySoloist_Start(nativeDisplaySoloist, callback, nullptr); in HWTEST_F() local 103 EXPECT_EQ(EXEC_SUCCESS, result); in HWTEST_F() 132 int32_t result = OH_DisplaySoloist_SetExpectedFrameRateRange(nullptr, &invalidRange); in HWTEST_F() local 133 EXPECT_EQ(SOLOIST_ERROR, result); in HWTEST_F() 146 int32_t result = OH_DisplaySoloist_SetExpectedFrameRateRange(nativeDisplaySoloist, &validRange); in HWTEST_F() local 147 EXPECT_EQ(EXEC_SUCCESS, result); in HWTEST_F() 159 int32_t result = OH_DisplaySoloist_Stop(nullptr); in HWTEST_F() local 160 EXPECT_EQ(SOLOIST_ERROR, result); in HWTEST_F() 172 int32_t result = OH_DisplaySoloist_Stop(nativeDisplaySoloist); HWTEST_F() local 185 int32_t result = OH_DisplaySoloist_Destroy(nullptr); HWTEST_F() local 198 int32_t result = OH_DisplaySoloist_Destroy(nativeDisplaySoloist); HWTEST_F() local [all...] |
/third_party/elfutils/libdw/ |
H A D | libdw_alloc.c | 86 struct libdw_memblock *result = dbg->mem_tails[thread_id]; in __libdw_alloc_tail() local 87 if (result == NULL) in __libdw_alloc_tail() 89 result = malloc (dbg->mem_default_size); in __libdw_alloc_tail() 90 if (result == NULL) in __libdw_alloc_tail() 95 result->size = dbg->mem_default_size in __libdw_alloc_tail() 97 result->remaining = result->size; in __libdw_alloc_tail() 98 result->prev = NULL; in __libdw_alloc_tail() 99 dbg->mem_tails[thread_id] = result; in __libdw_alloc_tail() 102 return result; in __libdw_alloc_tail() 110 struct libdw_memblock *result; __libdw_thread_tail() local 127 uintptr_t result = ((uintptr_t) newp->mem + align - 1) & ~(align - 1); __libdw_allocate() local [all...] |
/third_party/gn/src/base/strings/ |
H A D | stringprintf.cc | 52 int result = vsnprintfT(stack_buf, std::size(stack_buf), format, ap_copy); in StringAppendVT() local 55 if (result >= 0 && result < static_cast<int>(std::size(stack_buf))) { in StringAppendVT() 57 dst->append(stack_buf, result); in StringAppendVT() 64 if (result < 0) { in StringAppendVT() 77 // We need exactly "result + 1" characters. in StringAppendVT() 78 mem_length = result + 1; in StringAppendVT() 94 result = vsnprintfT(&mem_buf[0], mem_length, format, ap_copy); in StringAppendVT() 97 if ((result >= 0) && (result < mem_lengt in StringAppendVT() 110 std::string result; StringPrintf() local 117 std::string result; StringPrintV() local [all...] |
/third_party/gn/src/gn/ |
H A D | function_process_file_template_unittest.cc | 22 Value result = in TEST() local 26 ASSERT_TRUE(result.type() == Value::LIST); in TEST() 27 ASSERT_EQ(1u, result.list_value().size()); in TEST() 28 ASSERT_TRUE(result.list_value()[0].type() == Value::STRING); in TEST() 29 ASSERT_EQ("1234foo5678", result.list_value()[0].string_value()); in TEST() 50 Value result = in TEST() local 54 ASSERT_TRUE(result.type() == Value::LIST); in TEST() 55 ASSERT_EQ(4u, result.list_value().size()); in TEST() 56 ASSERT_TRUE(result.list_value()[0].type() == Value::STRING); in TEST() 57 ASSERT_TRUE(result in TEST() [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | servlkf.cpp | 72 LocaleKeyFactory::updateVisibleIDs(Hashtable& result, UErrorCode& status) const { in updateVisibleIDs() argument 81 result.remove(id); in updateVisibleIDs() 83 result.put(id, (void*)this, status); // this is dummy non-void marker used for set semantics in updateVisibleIDs() 93 LocaleKeyFactory::getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const { in getDisplayName() 100 return loc.getDisplayName(locale, result); in getDisplayName() 103 result.setToBogus(); in getDisplayName() 104 return result; in getDisplayName() 128 LocaleKeyFactory::debug(UnicodeString& result) const in debug() 130 debugClass(result); in debug() 131 result in debug() [all...] |
/third_party/libphonenumber/tools/java/java-build/test/com/google/i18n/phonenumbers/buildtools/ |
H A D | GenerateTimeZonesMapDataTest.java | 46 Map<Integer, String> result = parseTextFileHelper(PARIS_BRUSSELS_LINES); in testParseTextFile() 47 assertEquals(2, result.size()); in testParseTextFile() 48 assertEquals(PARIS_TZ, result.get(331)); in testParseTextFile() 49 assertEquals(BRUSSELS_TZ, result.get(322)); in testParseTextFile() 53 Map<Integer, String> result = parseTextFileHelper("# Hello\n" + PARIS_BRUSSELS_LINES); in testParseTextFileIgnoresComments() 54 assertEquals(2, result.size()); in testParseTextFileIgnoresComments() 55 assertEquals(PARIS_TZ, result.get(331)); in testParseTextFileIgnoresComments() 56 assertEquals(BRUSSELS_TZ, result.get(322)); in testParseTextFileIgnoresComments() 60 Map<Integer, String> result = parseTextFileHelper("\n" + PARIS_BRUSSELS_LINES); in testParseTextFileIgnoresBlankLines() 61 assertEquals(2, result in testParseTextFileIgnoresBlankLines() [all...] |
/third_party/mbedtls/scripts/mbedtls_dev/ |
H A D | bignum_mod.py | 48 ] + self.result() 50 def result(self) -> List[str]: member in BignumModMul 51 result = (self.int_a * self.int_b) % self.int_n 52 return [self.format_result(self.to_montgomery(result))] 66 def result(self) -> List[str]: member in BignumModSub 67 result = (self.int_a - self.int_b) % self.int_n 70 return [self.format_result(result), "0"] 83 def result(self) -> List[str]: member in BignumModInvNonMont 84 result = bignum_common.invmod_positive(self.int_a, self.int_n) 87 return [self.format_result(result), " 101 def result(self) -> List[str]: global() member in BignumModInvMont 123 def result(self) -> List[str]: global() member in BignumModAdd [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | servlkf.cpp | 72 LocaleKeyFactory::updateVisibleIDs(Hashtable& result, UErrorCode& status) const { in updateVisibleIDs() argument 81 result.remove(id); in updateVisibleIDs() 83 result.put(id, (void*)this, status); // this is dummy non-void marker used for set semantics in updateVisibleIDs() 93 LocaleKeyFactory::getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const { in getDisplayName() 100 return loc.getDisplayName(locale, result); in getDisplayName() 103 result.setToBogus(); in getDisplayName() 104 return result; in getDisplayName() 128 LocaleKeyFactory::debug(UnicodeString& result) const in debug() 130 debugClass(result); in debug() 131 result in debug() [all...] |
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | strength_reduction_test.cpp | 58 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 61 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 62 const std::string& output = std::get<0>(result); in TEST_F() 128 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 131 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 132 const std::string& output = std::get<0>(result); in TEST_F() 159 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 162 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 188 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 191 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 216 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( TEST_F() local 250 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( TEST_F() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | strength_reduction_test.cpp | 58 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 61 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 62 const std::string& output = std::get<0>(result); in TEST_F() 128 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 131 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 132 const std::string& output = std::get<0>(result); in TEST_F() 159 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 162 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 188 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 191 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 216 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( TEST_F() local 250 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( TEST_F() local [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | servlkf.cpp | 72 LocaleKeyFactory::updateVisibleIDs(Hashtable& result, UErrorCode& status) const { in updateVisibleIDs() argument 81 result.remove(id); in updateVisibleIDs() 83 result.put(id, (void*)this, status); // this is dummy non-void marker used for set semantics in updateVisibleIDs() 93 LocaleKeyFactory::getDisplayName(const UnicodeString& id, const Locale& locale, UnicodeString& result) const { in getDisplayName() 100 return loc.getDisplayName(locale, result); in getDisplayName() 103 result.setToBogus(); in getDisplayName() 104 return result; in getDisplayName() 128 LocaleKeyFactory::debug(UnicodeString& result) const in debug() 130 debugClass(result); in debug() 131 result in debug() [all...] |
/third_party/python/Python/ |
H A D | mystrtoul.c | 91 ** Errors due to bad pointers will probably result in 97 unsigned long result = 0; /* return value of the function */ in PyOS_strtoul() local 214 result = result * base + c; in PyOS_strtoul() 223 if (result > smallmax[base]) in PyOS_strtoul() 226 result *= base; in PyOS_strtoul() 229 temp_result = result + c; in PyOS_strtoul() 230 if (temp_result < result) in PyOS_strtoul() 233 result = temp_result; in PyOS_strtoul() 244 return result; in PyOS_strtoul() 265 long result; PyOS_strtol() local [all...] |
/third_party/spirv-tools/test/opt/ |
H A D | strength_reduction_test.cpp | 53 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 56 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 57 const std::string& output = std::get<0>(result); in TEST_F() 123 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 126 EXPECT_EQ(Pass::Status::SuccessWithChange, std::get<1>(result)); in TEST_F() 127 const std::string& output = std::get<0>(result); in TEST_F() 154 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 157 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 183 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( in TEST_F() local 186 EXPECT_EQ(Pass::Status::SuccessWithoutChange, std::get<1>(result)); in TEST_F() 211 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( TEST_F() local 245 auto result = SinglePassRunAndDisassemble<StrengthReductionPass>( TEST_F() local [all...] |
/foundation/multimedia/player_framework/frameworks/js/avscreen_capture/ |
H A D | avscreen_capture_napi.cpp | 87 napi_value result = nullptr; in Constructor() local 88 napi_get_undefined(env, &result); in Constructor() 93 CHECK_AND_RETURN_RET_LOG(status == napi_ok, result, "failed to napi_get_cb_info"); in Constructor() 96 CHECK_AND_RETURN_RET_LOG(jsScreenCapture != nullptr, result, "failed to new AVScreenCaptureNapi"); in Constructor() 100 CHECK_AND_RETURN_RET_LOG(jsScreenCapture->screenCapture_ != nullptr, result, "failed to CreateScreenCapture"); in Constructor() 106 CHECK_AND_RETURN_RET_LOG(jsScreenCapture->screenCaptureCb_ != nullptr, result, "failed to CreateScreenCaptureCb"); in Constructor() 114 return result; in Constructor() 146 napi_value result = nullptr; in JsCreateAVScreenRecorder() local 147 napi_get_undefined(env, &result); in JsCreateAVScreenRecorder() 154 CHECK_AND_RETURN_RET_LOG(status == napi_ok, result, "faile in JsCreateAVScreenRecorder() 204 napi_value result = nullptr; JsReportAVScreenCaptureUserChoice() local 265 auto result = asyncCtx->task_->GetResult(); AsyncJsReportAVScreenCaptureUserChoice() local 283 napi_value result = nullptr; JsInit() local 362 napi_value result = nullptr; JsSkipPrivacyMode() local 406 napi_value result = nullptr; JsSetMicrophoneEnabled() local 464 napi_value result = nullptr; JsSetEventCallback() local 502 napi_value result = nullptr; JsCancelEventCallback() local [all...] |
/base/security/huks/interfaces/kits/napi/src/v12/ |
H A D | huks_napi_import_wrapped_key_item_as_user.cpp | 45 napi_value result = GetUserIdValue(env, argv[index], userId); in ImportWrappedKeyAsUserParseParams() local 46 if (result == nullptr) { in ImportWrappedKeyAsUserParseParams() 52 result = ParseKeyAlias(env, argv[index], context->keyAlias); in ImportWrappedKeyAsUserParseParams() 53 if (result == nullptr) { in ImportWrappedKeyAsUserParseParams() 60 result = ParseKeyAliasAndHksParamSetAsUser(env, userId, argv, index, in ImportWrappedKeyAsUserParseParams() 62 if (result == nullptr) { in ImportWrappedKeyAsUserParseParams() 67 result = ParseKeyData(env, argv[index], context->wrappedData); in ImportWrappedKeyAsUserParseParams() 68 if (result == nullptr) { in ImportWrappedKeyAsUserParseParams() 85 napi_value result = ImportWrappedKeyAsUserParseParams(env, info, context); in HuksNapiImportWrappedKeyItemAsUser() local 86 if (result in HuksNapiImportWrappedKeyItemAsUser() [all...] |
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/ |
H A D | ark_paste_data_adapter_wrapper.cpp | 42 std::vector<std::string> result = ArkWebStringVectorStructToClass(vec); in GetMimeTypes() local 44 return result; in GetMimeTypes() 49 std::shared_ptr<std::string> result; in GetPrimaryHtml() local 50 ctocpp_->GetPrimaryHtml((void*)&result); in GetPrimaryHtml() 51 return result; in GetPrimaryHtml() 56 std::shared_ptr<std::string> result; in GetPrimaryText() local 57 ctocpp_->GetPrimaryText((void*)&result); in GetPrimaryText() 58 return result; in GetPrimaryText() 63 std::shared_ptr<std::string> result; in GetPrimaryMimeType() local 64 ctocpp_->GetPrimaryMimeType((void*)&result); in GetPrimaryMimeType() 82 NWeb::PasteRecordVector result = ArkPasteRecordVectorStructToClass(ark_vector); AllRecords() local [all...] |
/foundation/bundlemanager/bundle_framework/services/bundlemgr/include/ |
H A D | hidump_helper.h | 50 * @param result Indicates the result. 53 bool Dump(const std::vector<std::string>& args, std::string &result); 56 ErrCode ProcessOneParam(const std::string& args, std::string &result); 58 const std::string& secondParam, std::string &result); 59 void ShowHelp(std::string &result); 60 void ShowIllealInfomation(std::string &result); 61 ErrCode ProcessDump(const HidumpParam& hidumpParam, std::string &result); 63 ErrCode GetAllAbilityInfo(std::string &result); 64 ErrCode GetAllAbilityNameList(std::string &result); [all...] |
/foundation/distributedhardware/distributed_audio/common/dfx_utils/test/unittest/src/ |
H A D | daudio_hidumper_test.cpp | 47 std::string result; in HWTEST_F() local 49 EXPECT_EQ(true, hidumper_->Dump(args, result)); in HWTEST_F() 51 EXPECT_EQ(true, hidumper_->Dump(args, result)); in HWTEST_F() 53 EXPECT_NE(true, hidumper_->Dump(args, result)); in HWTEST_F() 55 hidumper_->Dump(args, result); in HWTEST_F() 57 EXPECT_EQ(true, hidumper_->Dump(args, result)); in HWTEST_F() 59 EXPECT_EQ(true, hidumper_->Dump(args, result)); in HWTEST_F() 71 std::string result = "123"; in HWTEST_F() local 72 EXPECT_NE(HDF_SUCCESS, hidumper_->GetSourceDevId(result)); in HWTEST_F() 84 std::string result in HWTEST_F() local 97 std::string result = ""; HWTEST_F() local [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_wsi.c | 42 VkResult result; in anv_init_wsi() local 44 result = wsi_device_init(&physical_device->wsi_device, in anv_init_wsi() 51 if (result != VK_SUCCESS) in anv_init_wsi() 52 return result; in anv_init_wsi() 81 VkResult result = in anv_AcquireNextImage2KHR() local 84 if (result == VK_SUCCESS) in anv_AcquireNextImage2KHR() 87 return result; in anv_AcquireNextImage2KHR() 96 VkResult result; in anv_QueuePresentKHR() local 106 result = vk_queue_wait_before_present(&queue->vk, pPresentInfo); in anv_QueuePresentKHR() 107 if (result ! in anv_QueuePresentKHR() [all...] |
/third_party/weex-loader/deps/weex-styler/lib/ |
H A D | shorthand-parser.js | 12 var result = [] 14 match[1] && result.push(generateDeclaration('transition-property', match[1], position)) 15 match[2] && result.push(generateDeclaration('transition-duration', match[2], position)) 16 match[3] && result.push(generateDeclaration('transition-timing-function', match[3], position)) 17 match[4] && result.push(generateDeclaration('transition-delay', match[4], position)) 18 return result 24 var result = [] 36 result.push( 42 return result 51 return declarations.reduce((result, declaratio [all...] |
/foundation/communication/bluetooth_service/services/bluetooth/stack/src/gap/ |
H A D | gap_le_if.c | 28 int result; member 33 int result; member 39 int result; member 45 int result; member 53 int result; member 62 int result; member 69 int result; member 74 int result; member 80 int result; member 86 int result; member 91 int result; global() member 97 int result; global() member 103 int result; global() member 110 int result; global() member 118 int result; global() member 124 int result; global() member 131 int result; global() member 136 int result; global() member 144 int result; global() member 151 int result; global() member 156 int result; global() member 162 int result; global() member 169 int result; global() member 177 int result; global() member 182 int result; global() member 188 int result; global() member 195 int result; global() member 202 int result; global() member 210 int result; global() member 216 int result; global() member 224 int result; global() member [all...] |
/base/msdp/device_status/test/unittest/libs/src/ |
H A D | device_status_algorithm_test.cpp | 143 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); in HWTEST_F() local 144 EXPECT_TRUE(result); in HWTEST_F() 147 result = g_manager->UnregisterSensor(Type::TYPE_ABSOLUTE_STILL); in HWTEST_F() 148 EXPECT_TRUE(result); in HWTEST_F() 161 bool result = g_manager->StartSensor(Type::TYPE_HORIZONTAL_POSITION); in HWTEST_F() local 162 EXPECT_TRUE(result); in HWTEST_F() 165 result = g_manager->UnregisterSensor(Type::TYPE_HORIZONTAL_POSITION); in HWTEST_F() 166 EXPECT_TRUE(result); in HWTEST_F() 179 bool result = g_manager->StartSensor(Type::TYPE_INVALID); in HWTEST_F() local 180 EXPECT_FALSE(result); in HWTEST_F() 200 bool result = g_manager->StartSensor(Type::TYPE_LID_OPEN); HWTEST_F() local 232 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 251 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 270 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 289 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 313 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 327 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 341 bool result = g_manager->StartSensor(Type::TYPE_INVALID); HWTEST_F() local 353 bool result = g_manager->StartSensor(Type::TYPE_HORIZONTAL_POSITION); HWTEST_F() local 367 bool result = g_manager->StartSensor(Type::TYPE_VERTICAL_POSITION); HWTEST_F() local 382 bool result = g_manager->StartSensor(static_cast<Type>(typeError)); HWTEST_F() local 394 bool result = g_manager->StartSensor(Type::TYPE_INVALID); HWTEST_F() local 410 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 446 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 464 bool result = g_manager->StartSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local 482 bool result = g_manager->StartSensor(Type::TYPE_HORIZONTAL_POSITION); HWTEST_F() local 497 bool result = g_manager->StartSensor(Type::TYPE_VERTICAL_POSITION); HWTEST_F() local 512 bool result = g_manager->StartSensor(Type::TYPE_VERTICAL_POSITION); HWTEST_F() local 580 bool result = g_manager->UnregisterSensor(Type::TYPE_ABSOLUTE_STILL); HWTEST_F() local [all...] |