Home
last modified time | relevance | path

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

12345

/base/startup/init/services/log/
Dinit_log.h84 #define INIT_ERROR_CHECK(ret, statement, format, ...) \ argument
88 statement; \
92 #define INIT_INFO_CHECK(ret, statement, format, ...) \ argument
96 statement; \
100 #define INIT_WARNING_CHECK(ret, statement, format, ...) \ argument
104 statement; \
108 #define INIT_CHECK(ret, statement) \ argument
111 statement; \
/base/security/access_token/services/privacymanager/src/database/
Dpermission_used_record_db.cpp82 auto statement = Prepare(prepareSql); in Add() local
88 statement.Bind(name, value.Get(name)); in Add()
90 int32_t ret = statement.Step(); in Add()
95 statement.Reset(); in Add()
112 auto statement = Prepare(prepareSql); in Remove() local
114 statement.Bind(columnName, conditions.Get(columnName)); in Remove()
116 int32_t ret = statement.Step(); in Remove()
127 auto statement = Prepare(prepareSql); in FindByConditions() local
130 statement.Bind(columnName, andConditions.Get(columnName)); in FindByConditions()
133 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/
Daccess_token_db.cpp110 auto statement = Prepare(prepareSql); in Add() local
116 statement.Bind(columnName, value.Get(columnName)); in Add()
118 int ret = statement.Step(); in Add()
123 statement.Reset(); in Add()
140 auto statement = Prepare(prepareSql); in Remove() local
142 statement.Bind(columnName, conditions.Get(columnName)); in Remove()
144 int ret = statement.Step(); in Remove()
154 auto statement = Prepare(prepareSql); in Modify() local
156 statement.Bind(columnName, modifyValues.Get(columnName)); in Modify()
159 statement.Bind(columnName, conditions.Get(columnName)); in Modify()
[all …]
/base/security/access_token/services/common/database/src/
Dsqlite_helper.cpp168 auto statement = Prepare(PRAGMA_VERSION_COMMAND); in GetVersion() local
170 while (statement.Step() == Statement::State::ROW) { in GetVersion()
171 version = statement.GetColumnInt(0); in GetVersion()
183 auto statement = Prepare(PRAGMA_VERSION_COMMAND + " = " + std::to_string(currentVersion_)); in SetVersion() local
184 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/asset/services/db_operator/src/
Dlib.rs19 mod statement; module
Ddatabase.rs27 statement::Statement,
Dtable.rs26 statement::Statement,
/base/update/updater/test/unittest/test_data/diffpatch/
DPatchGztest_new.gz
DPatchGztest_old.gz
/base/security/access_token/services/common/
DBUILD.gn44 "database/src/statement.cpp",
/base/tee/tee_client/
DLICENSE114 …i Fill in the blanks in following statement, including insert your software name, the year of the …
118 … iii Attach the statement to the appropriate annotated syntax at the beginning of each source file.
/base/security/asset/services/db_operator/src/test/
Dtest_table.rs22 statement::Statement,
/base/sensors/sensor_lite/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/powermgr/power_manager/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/customization/enterprise_device_management/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/global/resource_management_lite/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/useriam/fingerprint_auth/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/global/i18n_lite/
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

12345