Home
last modified time | relevance | path

Searched refs:result (Results 2976 - 3000 of 11088) sorted by relevance

1...<<111112113114115116117118119120>>...444

/foundation/communication/nfc/services/src/
H A Dnfc_routing_manager.cpp59 bool result = nciCeProxy_.lock()->CommitRouting(); in HandleCommitRouting() local
60 DebugLog("HandleCommitRouting: result = %{public}d", result); in HandleCommitRouting()
82 bool result = nciCeProxy_.lock()->ComputeRoutingParams(defaultPaymentType); in HandleComputeRoutingParams() local
83 DebugLog("HandleComputeRoutingParams result = %{public}d", result); in HandleComputeRoutingParams()
/foundation/deviceprofile/device_info_manager/old/services/core/test/unittest/
H A Dprofile_event_notifier_proxy_test.cpp37 int result = 0; member in OHOS::DeviceProfile::StorageProfileEventCallback
75 EXPECT_EQ(syncCb->result, 0); in HWTEST_F()
93 EXPECT_EQ(syncCb->result, 0); in HWTEST_F()
110 EXPECT_EQ(syncCb->result, 0); in HWTEST_F()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/app/test/unittest/
H A Dmeta_data_manager_test.cpp102 auto result = MetaDataManager::GetInstance().SaveMeta(student.name, student); in HWTEST_F() local
103 ASSERT_TRUE(result); in HWTEST_F()
109 result = MetaDataManager::GetInstance().LoadMeta(student.name, student1); in HWTEST_F()
110 ASSERT_TRUE(result); in HWTEST_F()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/
H A Drdb_notifier_proxy.cpp28 int32_t RdbNotifierProxy::OnComplete(uint32_t seqNum, Details &&result) in OnComplete() argument
35 if (!ITypesUtil::Marshal(data, seqNum, result)) { in OnComplete()
71 int32_t RdbNotifierProxy::OnComplete(const std::string& storeName, Details&& result) in OnComplete() argument
78 if (!ITypesUtil::Marshal(data, storeName, result)) { in OnComplete()
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/test/
H A Dmeta_data_manager_test.cpp84 auto result = MetaDataManager::GetInstance().Sync(devices, complete); in HWTEST_F() local
85 EXPECT_FALSE(result); in HWTEST_F()
100 auto result = MetaDataManager::GetInstance().Sync(devices, complete); in HWTEST_F() local
101 EXPECT_FALSE(result); in HWTEST_F()
/foundation/distributeddatamgr/data_share/interfaces/inner_api/consumer/include/
H A Ddatashare_abs_result_set.h45 int IsAtFirstRow(bool &result) const override;
46 int IsAtLastRow(bool &result) override;
47 int IsStarted(bool &result) const override;
48 int IsEnded(bool &result) override;
56 // The default position of the result set
61 // Indicates whether the result set is closed
/foundation/distributeddatamgr/pasteboard/interfaces/kits/napi/include/
H A Dpasteboard_common.h32 void SetCallback(const napi_env &env, const napi_ref &callbackIn, const napi_value *result);
38 napi_status SetValue(napi_env env, std::set<MiscServices::Pattern> &in, napi_value &result);
46 std::shared_ptr<std::map<std::string, std::shared_ptr<MiscServices::EntryValue>>> result);
47 napi_status ConvertEntryValue(napi_env env, napi_value *result, std::string &udtType,
/foundation/distributeddatamgr/pasteboard/services/zidl/src/
H A Dpasteboard_entry_getter_proxy.cpp66 int result = Remote()->SendRequest( in GetRecordValueByType() local
68 if (result != ERR_OK) { in GetRecordValueByType()
69 PASTEBOARD_HILOGE(PASTEBOARD_MODULE_SERVICE, "send request failed, error:%{public}d", result); in GetRecordValueByType()
70 return result; in GetRecordValueByType()
/foundation/distributeddatamgr/udmf/framework/common/
H A Dudmf_utils.cpp31 std::vector<std::string> result; in StrSplit() local
35 result.push_back(str.substr(start, end - start)); in StrSplit()
39 result.push_back(str.substr(start)); in StrSplit()
40 return result; in StrSplit()
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Dremote_result_set.h54 * Provides methods for accessing a database result set generated by remote query the database.
108 * @brief Obtains a string array holding the names of all of the columns in the result set.
110 * @return Returns the names of the columns contains in this query result.
146 * @brief Obtains the numbers of rows in the result set.
151 * @brief Obtains the current position of the cursor in the result set.
153 * The value is zero-based. When the result set is first returned the cursor
212 virtual int IsEnded(bool &result) = 0;
219 virtual int IsStarted(bool &result) const = 0;
226 virtual int IsAtFirstRow(bool &result) const = 0;
233 virtual int IsAtLastRow(bool &result)
[all...]
/foundation/distributeddatamgr/udmf/adapter/framework/common/
H A Dudmf_utils.cpp29 std::vector<std::string> result; in StrSplit() local
33 result.push_back(str.substr(start, end - start)); in StrSplit()
37 result.push_back(str.substr(start)); in StrSplit()
38 return result; in StrSplit()
/foundation/filemanagement/dfs_service/test/unittests/cloudsync_sa/ipc/
H A Ddownload_asset_callback_proxy_test.cpp76 int32_t result = 0; in HWTEST_F() local
77 proxy_->OnFinished(taskId, uri, result); in HWTEST_F()
98 int32_t result = 0; in HWTEST_F() local
99 proxy_->OnFinished(taskId, uri, result); in HWTEST_F()
/foundation/filemanagement/storage_service/services/storage_daemon/mtp/src/
H A Dmtp_device_manager.cpp72 std::vector<std::string> result; in MountDevice() local
73 int32_t err = ForkExec(cmdVec, &result); in MountDevice()
74 for (auto str : result) { in MountDevice()
75 LOGI("MountDevice result: %{public}s", str.c_str()); in MountDevice()
77 if ((err != 0) || (result.size() != 0)) { in MountDevice()
/kernel/linux/linux-5.10/arch/mips/fw/lib/
H A Dcmdline.c54 char *result = NULL; in fw_getenv() local
70 result = fw_envp(index + 1); in fw_getenv()
73 result = fw_envp(index) + i + 1; in fw_getenv()
86 return result; in fw_getenv()
/kernel/linux/linux-5.10/arch/s390/boot/
H A Dstring.c73 unsigned long long result = 0; in simple_strtoull() local
87 result = result * base + value; in simple_strtoull()
93 return result; in simple_strtoull()
/kernel/linux/linux-5.10/crypto/
H A Decc.h149 * Note: It is recommended that you hash the result of crypto_ecdh_shared_secret
213 * @result: where to write result
222 u64 vli_sub(u64 *result, const u64 *left, const u64 *right,
246 * @result: where to write vli number
251 void vli_mod_inv(u64 *result, const u64 *input, const u64 *mod,
257 * @result: where to write result value
265 void vli_mod_mult_slow(u64 *result, const u64 *left, const u64 *right,
271 * @result
[all...]
/kernel/linux/linux-5.10/drivers/firmware/efi/libstub/
H A Dstring.c86 unsigned long long result = 0; in simple_strtoull() local
100 result = result * base + value; in simple_strtoull()
106 return result; in simple_strtoull()
/kernel/linux/linux-6.6/arch/mips/fw/lib/
H A Dcmdline.c54 char *result = NULL; in fw_getenv() local
70 result = fw_envp(index + 1); in fw_getenv()
73 result = fw_envp(index) + i + 1; in fw_getenv()
86 return result; in fw_getenv()
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/pmu/
H A Dper_event_excludes.c92 FAIL_IF(events[i].result.running != events[i].result.enabled); in per_event_excludes()
95 * We can also check that the result for instructions is >= all the in per_event_excludes()
100 FAIL_IF(events[0].result.value < events[i].result.value); in per_event_excludes()
/kernel/linux/linux-6.6/arch/s390/boot/
H A Dstring.c74 unsigned long long result = 0; in simple_strtoull() local
88 result = result * base + value; in simple_strtoull()
94 return result; in simple_strtoull()
/kernel/linux/linux-5.10/drivers/md/persistent-data/
H A Ddm-block-manager.h68 * dm_bm_lock() locks a block and returns through @result a pointer to
70 * block then any changes you make to memory pointed to by @result will be
75 struct dm_block **result);
79 struct dm_block **result);
87 struct dm_block **result);
95 struct dm_block **result);
/kernel/linux/linux-5.10/drivers/misc/vmw_vmci/
H A Dvmci_queue_pair.h37 s32 result; member
47 s32 result; member
84 s32 result; member
93 s32 result; member
/kernel/linux/linux-5.10/tools/memory-model/scripts/
H A Dcmplitmushist.sh36 echo Matching Observation result and counts: $2
50 echo Matching Observation Always/Sometimes/Never result: $2
71 echo Matching Observation result and counts: $obsline 1>&2
79 echo Matching Observation Always/Sometimes/Never result: $obsresult 1>&2
/kernel/linux/linux-5.10/tools/lib/
H A Dbitmap.c65 unsigned long result = 0; in __bitmap_and() local
68 result |= (dst[k] = bitmap1[k] & bitmap2[k]); in __bitmap_and()
70 result |= (dst[k] = bitmap1[k] & bitmap2[k] & in __bitmap_and()
72 return result != 0; in __bitmap_and()
/kernel/linux/linux-6.6/drivers/misc/vmw_vmci/
H A Dvmci_queue_pair.h37 s32 result; member
47 s32 result; member
84 s32 result; member
93 s32 result; member

Completed in 11 milliseconds

1...<<111112113114115116117118119120>>...444