Home
last modified time | relevance | path

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

1234

/base/update/updater/services/include/log/
Dlog.h41 #define UPDATER_ERROR_CHECK(ret, log, statement) \ argument
44 statement; \
47 #define UPDATER_WARING_CHECK(ret, log, statement) \ argument
50 statement; \
53 #define UPDATER_INFO_CHECK(ret, log, statement) \ argument
56 statement; \
74 #define UPDATER_FILE_CHECK(ret, log, statement) \ argument
77 statement; \
80 #define UPDATER_CHECK_FILE_OP(ret, log, fd, statement) \ argument
84 statement; \
[all …]
/base/startup/init/services/log/
Dinit_log.h70 #define INIT_ERROR_CHECK(ret, statement, format, ...) \ argument
74 statement; \
78 #define INIT_INFO_CHECK(ret, statement, format, ...) \ argument
82 statement; \
86 #define INIT_WARNING_CHECK(ret, statement, format, ...) \ argument
90 statement; \
94 #define INIT_CHECK(ret, statement) \ argument
97 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()
125 auto statement = Prepare(prepareSql); in Modify() local
127 statement.Bind(columnName, modifyValues.Get(columnName)); in Modify()
130 statement.Bind(columnName, conditions.Get(columnName)); in Modify()
[all …]
/base/startup/init/interfaces/innerkits/include/
Dbeget_ext.h85 #define BEGET_ERROR_CHECK(ret, statement, format, ...) \ argument
88 statement; \
91 #define BEGET_INFO_CHECK(ret, statement, format, ...) \ argument
94 statement; \
97 #define BEGET_WARNING_CHECK(ret, statement, format, ...) \ argument
100 statement; \
103 #define BEGET_CHECK(ret, statement) \ argument
105 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/update/updater/services/script/script_manager/
Dscript_utils.h32 #define USCRIPT_CHECK(ret, statement, ...) \ argument
35 statement; \
/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.cpp117 UScriptStatementList* UScriptStatementList::CreateInstance(UScriptStatement *statement) in CreateInstance() argument
121 list->AddScriptStatement(statement); in CreateInstance()
134 void UScriptStatementList::AddScriptStatement(UScriptStatement *statement) in AddScriptStatement() argument
136 statements_.push_back(statement); in AddScriptStatement()
283 for (auto statement : statements_) { in Execute() local
284 result = statement->Execute(inter, context); in Execute()
336 auto statement = new(std::nothrow) UScriptReturnStatement(); in CreateStatement() local
337 USCRIPT_CHECK(statement != nullptr, return nullptr, "Create statement failed"); in CreateStatement()
339 statement->AddParams(params); in CreateStatement()
341 return statement; in CreateStatement()
Dscript_interpreter.h32 #define INTERPRETER_CHECK(inter, context, ret, statement, ...) \ argument
35 statement; \
50 void AddStatement(UScriptStatement *statement);
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.cpp148 void ScriptInterpreter::AddStatement(UScriptStatement *statement) in AddStatement() argument
151 statements_ = UScriptStatementList::CreateInstance(statement); in AddStatement()
153 statements_->AddScriptStatement(statement); in AddStatement()
/base/security/access_token/services/common/database/
DBUILD.gn28 "src/statement.cpp",
/base/update/updater/test/unittest/test_data/diffpatch/
DPatchGztest_new.gz
DPatchGztest_old.gz
/base/sensors/miscdevice/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/update/update_app/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/update/packaging_tools/
DLICENSE123 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/huks/
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/iothardware/peripheral/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/notification/eventhandler/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/telephony/data_storage/
DLICENSE124 You may add Your own copyright statement to Your modifications and
/base/sensors/medical_sensor/
DLICENSE124 You may add Your own copyright statement to Your modifications and

1234