Home
last modified time | relevance | path

Searched refs:index (Results 2226 - 2250 of 11995) sorted by relevance

1...<<81828384858687888990>>...480

/third_party/skia/docs/examples/
H A DRRect_offset.cpp11 for (int index = 0; index < 25; ++index) { in REG_FIDDLE()
/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/
H A Drender_water_flow.cpp129 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 Dtext_input_cursor_test.cpp383 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 Dvideoenc_api11_sample.cpp82 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 Dnet2_test.cpp853 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 Dnir_deref.c133 !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 Dbytecode-analysis.cc36 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 Druntime-scopes.cc149 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 DSkSLFunctionCall.cpp68 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 Ddescriptor_database.cc396 // 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 Ddev_auth_module_manager.c35 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 Dinit_cmdexecutor.c108 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 Dcellular_call_connection_cs.cpp64 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 Dsensor_ppg_config.c61 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 Doptions.cpp204 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 Ddsched_continue.h53 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 Djs_data_change_listener.h86 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 Dnative_animate.h252 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 Dhevc_decoder.h61 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 Dfcodec.h60 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 Dvideoenc_inner_sample.h72 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 Dmpeg_manager.cpp41 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 Dmedialibrary_rdb_utils.cpp112 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 Dsa_store.c114 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 Dsqlite_cloud_kv_executor_utils.h76 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...]

Completed in 22 milliseconds

1...<<81828384858687888990>>...480