/third_party/skia/docs/examples/ |
H A D | RRect_offset.cpp | 11 for (int index = 0; index < 25; ++index) { in REG_FIDDLE()
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/ |
H A D | render_water_flow.cpp | 129 void RenderWaterFlow::AddChildByIndex(size_t index, const RefPtr<RenderNode>& renderNode) in AddChildByIndex() argument 131 auto iter = items_.find(index); in AddChildByIndex() 133 items_.erase(index); in AddChildByIndex() 136 auto itor = items_.try_emplace(index, renderNode); in AddChildByIndex() 470 // reach the valid target index in SupplyItems() 641 void RenderWaterFlow::DeleteItems(size_t index) in DeleteItems() argument 647 auto iter = items_.find(index); in DeleteItems() 651 deleteChildByIndex_(index); in DeleteItems() 652 RemoveChildByIndex(index); in DeleteItems() 655 void RenderWaterFlow::ClearLayout(size_t index, boo argument 666 ClearItems(size_t index) ClearItems() argument 678 OnDataSourceUpdated(size_t index) OnDataSourceUpdated() argument 797 ScrollToIndex(int32_t index) ScrollToIndex() argument 1000 size_t index = 0; GetNextSupplyedIndex() local 1014 size_t index = GetLastSupplyedIndex(); GetLastSupplyedMainSize() local 1281 ClearFlowMatrix(size_t index, bool clearAll) ClearFlowMatrix() argument 1296 ClearItemsByCrossIndex(size_t index, bool clearAll) ClearItemsByCrossIndex() argument [all...] |
/foundation/arkui/ace_engine/test/unittest/core/pattern/text_input/ |
H A D | text_input_cursor_test.cpp | 383 EXPECT_EQ(pattern_->selectController_->GetFirstHandleInfo().index, start); in HWTEST_F() 384 EXPECT_EQ(pattern_->selectController_->GetSecondHandleInfo().index, end) in HWTEST_F() 385 << "Second index is " + std::to_string(pattern_->selectController_->GetSecondHandleInfo().index); in HWTEST_F() 411 EXPECT_EQ(pattern_->selectController_->GetFirstHandleInfo().index, 0); in HWTEST_F() 413 EXPECT_EQ(pattern_->selectController_->GetSecondHandleInfo().index, 0) in HWTEST_F() 414 << "Second index is " + std::to_string(pattern_->selectController_->GetSecondHandleInfo().index); in HWTEST_F() 429 EXPECT_EQ(pattern_->selectController_->GetFirstHandleInfo().index, 5); in HWTEST_F() 430 EXPECT_EQ(pattern_->selectController_->GetSecondHandleInfo().index, in HWTEST_F() [all...] |
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/src/ |
H A D | videoenc_api11_sample.cpp | 82 static void onEncInputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) in onEncInputBufferAvailable() argument 86 signal->inIdxQueue_.push(index); in onEncInputBufferAvailable() 91 static void onEncOutputBufferAvailable(OH_AVCodec *codec, uint32_t index, OH_AVBuffer *buffer, void *userData) in onEncOutputBufferAvailable() argument 95 signal->outIdxQueue_.push(index); in onEncOutputBufferAvailable() 100 static void onEncInputParam(OH_AVCodec *codec, uint32_t index, OH_AVFormat *parameter, void *userData) in onEncInputParam() argument 111 OH_VideoEncoder_PushInputParameter(codec, index); in onEncInputParam() 139 OH_VideoEncoder_PushInputParameter(codec, index); in onEncInputParam() 320 uint32_t index = signal_->inIdxQueue_.front(); in state_EOS() local 331 return OH_VideoEncoder_PushInputBuffer(venc_, index); in state_EOS() 667 uint32_t VEncAPI11Sample::ReadOneFrameFromList(uint8_t *dst, int32_t &index) in ReadOneFrameFromList() argument 775 RandomEOS(uint32_t index) RandomEOS() argument 835 SetEOS(uint32_t index, OH_AVBuffer *buffer) SetEOS() argument 925 PushData(OH_AVBuffer *buffer, uint32_t index, int32_t &result) PushData() argument 1008 uint32_t index = signal_->inIdxQueue_.front(); InputFunc() local 1085 uint32_t index = signal_->outIdxQueue_.front(); OutputFunc() local [all...] |
/foundation/multimedia/av_codec/test/moduletest/demuxer/src/ |
H A D | net2_test.cpp | 853 for (int32_t index = 0; index < g_trackCount; index++) { in HWTEST_F() 854 ASSERT_EQ(AV_ERR_OK, OH_AVDemuxer_SelectTrackByID(demuxer, index)); in HWTEST_F() 895 for (int32_t index = 0; index < g_trackCount; index++) { in HWTEST_F() 896 ASSERT_EQ(AV_ERR_OK, OH_AVDemuxer_SelectTrackByID(demuxer, index)); in HWTEST_F() 903 for (int32_t index = 0; index < g_trackCoun in HWTEST_F() [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_deref.c | 133 !nir_src_is_const(instr->arr.index)) in nir_deref_instr_has_indirect() 147 nir_src_is_const(instr->arr.index) && in nir_deref_instr_is_known_out_of_bounds() 148 nir_src_as_uint(instr->arr.index) >= in nir_deref_instr_is_known_out_of_bounds() 170 /* If a deref shows up in an array index or something like that, it's in nir_deref_instr_has_complex_use() 314 offset += nir_src_as_uint((*p)->arr.index) * in nir_deref_instr_get_const_offset() 321 (*p)->strct.index); in nir_deref_instr_get_const_offset() 349 nir_ssa_def *index = nir_ssa_for_src(b, (*p)->arr.index, 1); in nir_build_deref_offset() local 351 offset = nir_iadd(b, offset, nir_amul_imm(b, index, stride)); in nir_build_deref_offset() 359 (*p)->strct.index); in nir_build_deref_offset() [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | bytecode-analysis.cc | 36 bit_vector_->Add(parameter_count_ + r.index()); in Add() 43 DCHECK(interpreter::Register(r.index() + i).is_parameter()); in AddList() 48 DCHECK(!interpreter::Register(r.index() + i).is_parameter()); in AddList() 49 bit_vector_->Add(parameter_count_ + r.index() + i); in AddList() 59 bool BytecodeLoopAssignments::ContainsParameter(int index) const { in ContainsParameter() 60 DCHECK_GE(index, 0); in ContainsParameter() 61 DCHECK_LT(index, parameter_count()); in ContainsParameter() 62 return bit_vector_->Contains(index); in ContainsParameter() 65 bool BytecodeLoopAssignments::ContainsLocal(int index) const { in ContainsLocal() 66 DCHECK_GE(index, in ContainsLocal() [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-scopes.cc | 149 int index; in RUNTIME_FUNCTION() 152 index = Smi::ToInt(decl); in RUNTIME_FUNCTION() 158 index = Smi::ToInt(declarations->get(++i)); in RUNTIME_FUNCTION() 166 Cell::cast(exports->get(index - 1)).set_value(value); in RUNTIME_FUNCTION() 206 int index = Smi::ToInt(declarations->get(++i)); in RUNTIME_FUNCTION() 208 closure_feedback_cell_array->GetFeedbackCell(index); in RUNTIME_FUNCTION() 250 int index; in DeclareEvalHelper() local 256 Context::Lookup(context, name, DONT_FOLLOW_CHAINS, &index, &attributes, in DeclareEvalHelper() 288 if (index != Context::kNotFound) { in DeclareEvalHelper() 290 context->set(index, *valu in DeclareEvalHelper() 429 int index = argument_count - 1; NewSloppyArguments() local 474 operator [](int index) operator []() argument 483 operator [](int index) operator []() argument 630 int index; RUNTIME_FUNCTION() local 667 int index; LoadLookupSlot() local 767 int index; StoreLookupSlot() local 781 index, value); StoreLookupSlot() local [all...] |
/third_party/skia/src/sksl/ir/ |
H A D | SkSLFunctionCall.cpp | 68 for (int index = 0; index < numSlots; ++index) { in assemble_compound() 69 array.push_back(Literal::Make(line, value[index], &returnType.componentType())); in assemble_compound() 106 for (int index = 0; index < vecType.columns(); ++index) { in coalesce_n_way_vector() 181 for (int index = 0; index < type.columns(); ++index) { in optimize_comparison() 674 int index = 0; optimize_intrinsic_call() local 684 int index = 0; optimize_intrinsic_call() local [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor_database.cc | 396 // to the index. 448 StringPiece name(const DescriptorIndex& index) const { in name() 449 return index.DecodeString(encoded_name, data_offset); in name() 453 const DescriptorIndex& index; member 456 return a.name(index) < b.name(index); in operator ()() 459 return a.name(index) < b; in operator ()() 462 return a < b.name(index); in operator ()() 472 StringPiece package(const DescriptorIndex& index) const { in package() 473 return index in package() 487 const DescriptorIndex& index; global() member 534 const DescriptorIndex& index; global() member 667 CheckForMutualSubsymbols(StringPiece symbol_name, Iter* iter, Iter2 end, const Index& index) CheckForMutualSubsymbols() argument [all...] |
/base/security/device_auth/services/frameworks/src/module/ |
H A D | dev_auth_module_manager.c | 35 uint32_t index; in GetModule() local 37 FOR_EACH_HC_VECTOR(g_authModuleVec, index, module) { in GetModule() 284 uint32_t index; in DestroyModules() local 286 FOR_EACH_HC_VECTOR(g_authModuleVec, index, module) { in DestroyModules() 306 uint32_t index; in AddAuthModulePlugin() local 308 FOR_EACH_HC_VECTOR(g_authModuleVec, index, pluginPtr) { in AddAuthModulePlugin() 321 HC_VECTOR_POPELEMENT(&g_authModuleVec, pluginPtr, index); in AddAuthModulePlugin() 330 uint32_t index; in DelAuthModulePlugin() local 332 FOR_EACH_HC_VECTOR(g_authModuleVec, index, pluginPtr) { in DelAuthModulePlugin() 336 HC_VECTOR_POPELEMENT(&g_authModuleVec, pluginPtr, index); in DelAuthModulePlugin() [all...] |
/base/startup/init/services/init/standard/ |
H A D | init_cmdexecutor.c | 108 INIT_LOGV("PluginExecCmd_ index %s content: %s", cmd->name, cmdContent);
in PluginExecCmd_() 137 INIT_LOGV("PluginExecCmd index %s", cmd->name);
in PluginExecCmd() 158 static PluginCmd *GetPluginCmdByIndex(int index)
in GetPluginCmdByIndex() argument 160 int hashCode = (((unsigned int)index >> 16) & 0x0000ffff) - 1; // 16 left shift
in GetPluginCmdByIndex() 161 int cmdId = ((unsigned int)index & 0x0000ffff);
in GetPluginCmdByIndex() 174 const char *GetPluginCmdNameByIndex(int index)
in GetPluginCmdNameByIndex() argument 176 PluginCmd *cmd = GetPluginCmdByIndex(index);
in GetPluginCmdNameByIndex() 183 void PluginExecCmdByCmdIndex(int index, const char *cmdContent, const ConfigContext *context)
in PluginExecCmdByCmdIndex() argument 185 PluginCmd *cmd = GetPluginCmdByIndex(index);
in PluginExecCmdByCmdIndex() 187 INIT_LOGW("Cannot find plugin command with index in PluginExecCmdByCmdIndex() 198 PluginGetCmdIndex(const char *cmdStr, int *index) PluginGetCmdIndex() argument [all...] |
/base/telephony/cellular_call/services/connection/src/ |
H A D | cellular_call_connection_cs.cpp | 64 int32_t index = GetIndex(); in HangUpRequest() local 65 CoreManagerInner::GetInstance().Hangup(slotId, RadioEvent::RADIO_HANGUP_CONNECT, index, handle); in HangUpRequest() 174 int32_t CellularCallConnectionCS::SeparateConferenceRequest(int32_t slotId, int32_t index, int32_t voiceCall) in SeparateConferenceRequest() argument 186 CoreManagerInner::GetInstance().SeparateConference(slotId, RadioEvent::RADIO_SPLIT_CALL, index, voiceCall, handle); in SeparateConferenceRequest() 212 int32_t CellularCallConnectionCS::SendDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in SendDtmfRequest() 224 CoreManagerInner::GetInstance().SendDTMF(slotId, RadioEvent::RADIO_SEND_DTMF, cDtmfCode, index, handle); in SendDtmfRequest() 228 int32_t CellularCallConnectionCS::StartDtmfRequest(int32_t slotId, char cDtmfCode, int32_t index) const in StartDtmfRequest() 240 CoreManagerInner::GetInstance().StartDTMF(slotId, RadioEvent::RADIO_START_DTMF, cDtmfCode, index, handle); in StartDtmfRequest() 244 int32_t CellularCallConnectionCS::StopDtmfRequest(int32_t slotId, int32_t index) const in StopDtmfRequest() 256 CoreManagerInner::GetInstance().StopDTMF(slotId, RadioEvent::RADIO_STOP_DTMF, index, handl in StopDtmfRequest() [all...] |
/drivers/hdf_core/framework/model/sensor/driver/ppg/ |
H A D | sensor_ppg_config.c | 61 for (uint32_t index = 0; index < (num / PPG_PIN_CFG_INDEX_MAX); ++index) { in ParsePpgPinMuxConfig() 62 mutiPinConfig = &pinCfg->multiUsePin[index]; in ParsePpgPinMuxConfig() 65 HDF_LOGE("%s: SetSensorPinMux failed, index %d, reg=0x%x, len=%d, val=0x%x", __func__, index, in ParsePpgPinMuxConfig() 103 for (uint32_t index = 0; index < (num / PPG_GPIOS_INDEX_MAX); ++index) { in ParsePpgGpiosConfig() 104 gpioCfg = &pinCfg->gpios[index]; in ParsePpgGpiosConfig() [all...] |
/drivers/hdf_core/framework/tools/hdi-gen/util/ |
H A D | options.cpp | 204 size_t index = packagePath.find(":"); in AddPackagePath() local 209 if (index == std::string::npos || index == packagePath.size() - 1) { in AddPackagePath() 214 std::string package = packagePath.substr(0, index); in AddPackagePath() 215 std::string path = File::AdapterRealPath(packagePath.substr(index + 1)); in AddPackagePath() 217 Logger::E(TAG, "invalid path '%s'.", packagePath.substr(index + 1).c_str()); in AddPackagePath() 383 size_t index = import.rfind('.'); in GetImportFilePath() local 384 if (index == std::string::npos) { in GetImportFilePath() 388 std::string dir = GetPackagePath(StringHelper::SubStr(import, 0, index)); in GetImportFilePath() 389 std::string className = import.substr(index in GetImportFilePath() [all...] |
/foundation/ability/dmsfwk/services/dtbschedmgr/include/continue/ |
H A D | dsched_continue.h | 53 bool operator == (const DSchedContinueInfo &index) const in operator ==() 57 std::string otherCompareInfo = index.sourceDeviceId_ + index.sourceBundleName_ + index.sinkDeviceId_ + in operator ==() 58 index.sinkBundleName_; in operator ==() 62 bool operator < (const DSchedContinueInfo &index) const in operator <() 66 std::string otherCompareInfo = index.sourceDeviceId_ + index.sourceBundleName_ + index.sinkDeviceId_ + in operator <() 67 index in operator <() [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_data_change_listener.h | 86 size_t index = 0; in OnDataBulkAdded() local 89 if (args.Length() < length || !ConvertFromJSValue(args[0], index) || !ConvertFromJSValue(args[1], count)) { in OnDataBulkAdded() 92 NotifyAll(&V2::DataChangeListener::OnDataBulkAdded, index, count); in OnDataBulkAdded() 111 size_t index = 0; in OnDataBulkDeleted() local 114 if (args.Length() < length || !ConvertFromJSValue(args[0], index) || !ConvertFromJSValue(args[1], count)) { in OnDataBulkDeleted() 117 NotifyAll(&V2::DataChangeListener::OnDataBulkDeleted, index, count); in OnDataBulkDeleted() 208 if (value->GetProperty("index")->IsNumber()) { in transferIndex() 209 dataOperation.index = value->GetProperty("index")->ToNumber<int32_t>(); in transferIndex() 210 } else if (value->GetProperty("index") in transferIndex() 282 size_t index = 0; NotifyAll() local [all...] |
/foundation/arkui/ace_engine/interfaces/native/ |
H A D | native_animate.h | 252 int32_t OH_ArkUI_KeyframeAnimateOption_SetDuration(ArkUI_KeyframeAnimateOption* option, int32_t value, int32_t index); 254 ArkUI_KeyframeAnimateOption* option, ArkUI_CurveHandle value, int32_t index); 256 ArkUI_KeyframeAnimateOption* option, void* userData, void (*event)(void* userData), int32_t index); 259 int32_t OH_ArkUI_KeyframeAnimateOption_GetDuration(ArkUI_KeyframeAnimateOption* option, int32_t index); 260 ArkUI_CurveHandle OH_ArkUI_KeyframeAnimateOption_GetCurve(ArkUI_KeyframeAnimateOption* option, int32_t index); 273 int32_t OH_ArkUI_AnimatorOption_SetKeyframe(ArkUI_AnimatorOption* option, float time, float value, int32_t index); 274 int32_t OH_ArkUI_AnimatorOption_SetKeyframeCurve(ArkUI_AnimatorOption* option, ArkUI_CurveHandle value, int32_t index); 284 float OH_ArkUI_AnimatorOption_GetKeyframeTime(ArkUI_AnimatorOption* option, int32_t index); 285 float OH_ArkUI_AnimatorOption_GetKeyframeValue(ArkUI_AnimatorOption* option, int32_t index); 286 ArkUI_CurveHandle OH_ArkUI_AnimatorOption_GetKeyframeCurve(ArkUI_AnimatorOption* option, int32_t index); [all...] |
/foundation/multimedia/av_codec/services/engine/codec/video/hevcdecoder/ |
H A D | hevc_decoder.h | 61 int32_t QueueInputBuffer(uint32_t index) override; 62 int32_t ReleaseOutputBuffer(uint32_t index) override; 65 int32_t RenderOutputBuffer(uint32_t index) override; 128 int32_t UpdateOutputBuffer(uint32_t index); 129 int32_t UpdateSurfaceMemory(uint32_t index); 134 void FindAvailIndex(uint32_t index); 135 void FramePostProcess(std::shared_ptr<HBuffer> &frameBuffer, uint32_t index, int32_t status, int ret); 139 int32_t CheckFormatChange(uint32_t index, int width, int height, int bitDepth); 144 int32_t RenderNewSurfaceWithOldBuffer(const sptr<Surface> &newSurface, uint32_t index); 145 int32_t FlushSurfaceMemory(std::shared_ptr<FSurfaceMemory> &surfaceMemory, uint32_t index); [all...] |
/foundation/multimedia/av_codec/services/engine/codec/video/fcodec/ |
H A D | fcodec.h | 60 int32_t QueueInputBuffer(uint32_t index) override; 61 int32_t ReleaseOutputBuffer(uint32_t index) override; 64 int32_t RenderOutputBuffer(uint32_t index) override; 111 int32_t UpdateBuffers(uint32_t index, int32_t bufferSize, uint32_t bufferType); 112 int32_t UpdateSurfaceMemory(uint32_t index); 115 void FindAvailIndex(uint32_t index); 120 void FramePostProcess(std::shared_ptr<FBuffer> &frameBuffer, uint32_t index, int32_t status, int ret); 124 int32_t CheckFormatChange(uint32_t index, int width, int height); 129 int32_t RenderNewSurfaceWithOldBuffer(const sptr<Surface> &newSurface, uint32_t index); 130 int32_t FlushSurfaceMemory(std::shared_ptr<FSurfaceMemory> &surfaceMemory, uint32_t index); [all...] |
/foundation/multimedia/av_codec/test/moduletest/vcodec/encoder/include/ |
H A D | videoenc_inner_sample.h | 72 void OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVSharedMemory> buffer) override; 73 void OnOutputBufferAvailable(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag, 85 void OnInputParameterWithAttrAvailable(uint32_t index, std::shared_ptr<Format> attribute, 110 int32_t QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag); 112 int32_t ReleaseOutputBuffer(uint32_t index); 120 int32_t PushData(std::shared_ptr<AVSharedMemory> buffer, uint32_t index, int32_t &result); 133 int32_t PushInputParameter(uint32_t index); 134 bool RandomEOS(uint32_t index); 136 void SetEOS(uint32_t index); 149 bool IsFrameDiscard(uint32_t index); [all...] |
/foundation/multimedia/camera_framework/services/deferred_processing_service/src/media_manager/ |
H A D | mpeg_manager.cpp | 41 void OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) override; 42 void OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) override; 58 void MpegManager::VideoCodecCallback::OnInputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) in OnInputBufferAvailable() argument 61 (void)index; in OnInputBufferAvailable() 64 void MpegManager::VideoCodecCallback::OnOutputBufferAvailable(uint32_t index, std::shared_ptr<AVBuffer> buffer) in OnOutputBufferAvailable() argument 69 manager->OnBufferAvailable(index, buffer); in OnOutputBufferAvailable() 154 MediaManagerError MpegManager::ReleaseBuffer(uint32_t index) in ReleaseBuffer() argument 156 auto ret = encoder_->ReleaseOutputBuffer(index); in ReleaseBuffer() 220 void MpegManager::OnBufferAvailable(uint32_t index, const std::shared_ptr<AVBuffer>& buffer) in OnBufferAvailable() argument 224 ret = ReleaseBuffer(index); in OnBufferAvailable() [all...] |
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/ |
H A D | medialibrary_rdb_utils.cpp | 112 static inline string GetStringValFromColumn(const shared_ptr<ResultSet> &resultSet, const int index) in GetStringValFromColumn() argument 115 if (resultSet->GetString(index, value)) { in GetStringValFromColumn() 121 static inline int32_t GetIntValFromColumn(const shared_ptr<ResultSet> &resultSet, const int index) in GetIntValFromColumn() argument 124 if (resultSet->GetInt(index, value)) { in GetIntValFromColumn() 132 int32_t index = 0; in GetStringValFromColumn() local 133 if (resultSet->GetColumnIndex(columnName, index)) { in GetStringValFromColumn() 137 return GetStringValFromColumn(resultSet, index); in GetStringValFromColumn() 142 int32_t index = 0; in GetIntValFromColumn() local 143 if (resultSet->GetColumnIndex(columnName, index)) { in GetIntValFromColumn() 147 return GetIntValFromColumn(resultSet, index); in GetIntValFromColumn() 1376 int index = -1; GetIntFromResultSet() local 1392 int index = -1; GetStringFromResultSet() local [all...] |
/foundation/systemabilitymgr/samgr_lite/samgr_endpoint/source/ |
H A D | sa_store.c | 114 int index = SASTORA_FindHandleByPid(saStore, handle.pid, &saved);
in SASTORA_SaveHandleByPid() local 118 if (index != INVALID_INDEX) {
in SASTORA_SaveHandleByPid() 119 saStore->maps[index] = handle;
in SASTORA_SaveHandleByPid() 231 int index = SASTORA_FindHandleByPid(saStore, pid, &pidHandle);
in SASTORA_ClearByPid() local 232 if (index == INVALID_INDEX) {
in SASTORA_ClearByPid() 237 if (saStore->mapTop <= (index + 1)) {
in SASTORA_ClearByPid() 242 errno_t err = memmove_s(&saStore->maps[index], sizeof(PidHandle) * (saStore->mapTop - index),
in SASTORA_ClearByPid() 243 &saStore->maps[index + 1], sizeof(PidHandle) * (saStore->mapTop - index in SASTORA_ClearByPid() [all...] |
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/ |
H A D | sqlite_cloud_kv_executor_utils.h | 76 static int GetCloudKvBlobData(const std::string &keyStr, int index, sqlite3_stmt *stmt, 90 static int OperateCloudData(sqlite3 *db, bool isMemory, int index, OpType opType, 101 static int BindStmt(sqlite3_stmt *logStmt, sqlite3_stmt *dataStmt, int index, OpType opType, 120 static int BindSyncDataStmt(sqlite3_stmt *dataStmt, const DataItem &dataItem, bool isInsert, int &index); 122 static int BindCloudDataStmt(sqlite3_stmt *dataStmt, const DataItem &dataItem, int &index); 126 static int OnlyUpdateLogTable(sqlite3 *db, bool isMemory, int index, OpType op, DownloadData &downloadData); 128 static int OnlyUpdateSyncData(sqlite3 *db, bool isMemory, int index, OpType opType, DownloadData &downloadData); 130 static int BindUpdateSyncDataStmt(sqlite3_stmt *dataStmt, int index, OpType opType, DownloadData &downloadData); 132 static int BindUpdateTimestampStmt(sqlite3_stmt *dataStmt, int index, DownloadData &downloadData); 137 static std::pair<int, DataItem> GetDataItem(int index, DownloadDat [all...] |