Home
last modified time | relevance | path

Searched refs:statement (Results 1 – 25 of 101) sorted by relevance

12345

/base/startup/init/services/log/
Dinit_log.h83 #define INIT_ERROR_CHECK(ret, statement, format, ...) \ argument
87 statement; \
91 #define INIT_INFO_CHECK(ret, statement, format, ...) \ argument
95 statement; \
99 #define INIT_WARNING_CHECK(ret, statement, format, ...) \ argument
103 statement; \
107 #define INIT_CHECK(ret, statement) \ argument
110 statement; \
/base/security/access_token/services/privacymanager/src/database/
Dpermission_used_record_db.cpp80 auto statement = Prepare(prepareSql); in Add() local
86 statement.Bind(columnName, value.Get(columnName)); in Add()
88 int32_t ret = statement.Step(); in Add()
93 statement.Reset(); in Add()
110 auto statement = Prepare(prepareSql); in Remove() local
112 statement.Bind(columnName, conditions.Get(columnName)); in Remove()
114 int32_t ret = statement.Step(); in Remove()
124 auto statement = Prepare(prepareSql); in FindByConditions() local
127 statement.Bind(columnName, andConditions.Get(columnName)); in FindByConditions()
130 while (statement.Step() == Statement::State::ROW) { in FindByConditions()
[all …]
/base/startup/init/interfaces/innerkits/include/
Dbeget_ext.h120 #define BEGET_ERROR_CHECK(ret, statement, format, ...) \ argument
123 statement; \
126 #define BEGET_INFO_CHECK(ret, statement, format, ...) \ argument
129 statement; \
132 #define BEGET_WARNING_CHECK(ret, statement, format, ...) \ argument
135 statement; \
138 #define BEGET_CHECK(ret, statement) \ argument
140 statement; \
/base/security/access_token/services/accesstokenmanager/main/cpp/src/database/
Dsqlite_storage.cpp107 auto statement = Prepare(prepareSql); in Add() local
113 statement.Bind(columnName, value.Get(columnName)); in Add()
115 int ret = statement.Step(); in Add()
120 statement.Reset(); in Add()
137 auto statement = Prepare(prepareSql); in Remove() local
139 statement.Bind(columnName, conditions.Get(columnName)); in Remove()
141 int ret = statement.Step(); in Remove()
151 auto statement = Prepare(prepareSql); in Modify() local
153 statement.Bind(columnName, modifyValues.Get(columnName)); in Modify()
156 statement.Bind(columnName, conditions.Get(columnName)); in Modify()
[all …]
/base/security/access_token/services/common/database/src/
Dsqlite_helper.cpp159 auto statement = Prepare(PRAGMA_VERSION_COMMAND); in GetVersion() local
161 while (statement.Step() == Statement::State::ROW) { in GetVersion()
162 version = statement.GetColumnInt(0); in GetVersion()
174 auto statement = Prepare(PRAGMA_VERSION_COMMAND + " = " + std::to_string(currentVersion_)); in SetVersion() local
175 statement.Step(); in SetVersion()
/base/update/updater/services/script/script_interpreter/
Dscript_statement.cpp123 UScriptStatementList* UScriptStatementList::CreateInstance(UScriptStatement *statement) in CreateInstance() argument
130 list->AddScriptStatement(statement); in CreateInstance()
143 void UScriptStatementList::AddScriptStatement(UScriptStatement *statement) in AddScriptStatement() argument
145 statements_.push_back(statement); in AddScriptStatement()
292 for (auto statement : statements_) { in Execute() local
293 result = statement->Execute(inter, context); in Execute()
345 auto statement = new(std::nothrow) UScriptReturnStatement(); in CreateStatement() local
346 if (statement == nullptr) { in CreateStatement()
351 statement->AddParams(params); in CreateStatement()
353 return statement; in CreateStatement()
Dscript_statement.h153 void AddNextStatement(UScriptIfStatement *statement) in AddNextStatement() argument
155 nextStatement_ = statement; in AddNextStatement()
217 static UScriptStatementList* CreateInstance(UScriptStatement *statement);
218 void AddScriptStatement(UScriptStatement *statement);
Dscript_yacc.y114 for_statement while_statement statement if_statement
124 |statement
139 statement:expression_statement
301 statement_list:statement_list statement
306 |statement
Dscript_interpreter.cpp157 void ScriptInterpreter::AddStatement(UScriptStatement *statement) in AddStatement() argument
160 statements_ = UScriptStatementList::CreateInstance(statement); in AddStatement()
162 statements_->AddScriptStatement(statement); in AddStatement()
Dscript_interpreter.h44 void AddStatement(UScriptStatement *statement);
/base/security/access_token/services/common/database/
DBUILD.gn30 "src/statement.cpp",
/base/update/updater/test/unittest/test_data/diffpatch/
DPatchGztest_new.gz
DPatchGztest_old.gz1[==========] Running 25 tests from 7 test ...
/base/update/sys_installer_lite/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/powermgr/battery_lite/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/global/resource_management/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/hiviewdfx/hitrace/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/global/system_resources/
DLICENSE126 You may add Your own copyright statement to Your modifications and
/base/telephony/state_registry/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/telephony/sms_mms/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/security/access_token/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/security/selinux_adapter/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/notification/common_event_service/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/useriam/pin_auth/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/security/certificate_manager/
DLICENSE124 You may add Your own copyright statement to Your modifications and

12345