Home
last modified time | relevance | path

Searched refs:col (Results 1 - 5 of 5) sorted by relevance

/base/security/asset/services/db_operator/src/
H A Dsqlite3_wrapper.c76 const char *SqliteColumnName(void *pStmt, int col) in SqliteColumnName() argument
78 return sqlite3_column_name((sqlite3_stmt *)pStmt, col); in SqliteColumnName()
86 const void *SqliteColumnBlob(void *pStmt, int col) in SqliteColumnBlob() argument
88 return sqlite3_column_blob((sqlite3_stmt *)pStmt, col); in SqliteColumnBlob()
91 int SqliteColumnInt(void *pStmt, int col) in SqliteColumnInt() argument
93 return sqlite3_column_int((sqlite3_stmt *)pStmt, col); in SqliteColumnInt()
96 int64_t SqliteColumnInt64(void *pStmt, int col) in SqliteColumnInt64() argument
98 return sqlite3_column_int64((sqlite3_stmt *)pStmt, col); in SqliteColumnInt64()
101 int SqliteColumnBytes(void *pStmt, int col) in SqliteColumnBytes() argument
103 return sqlite3_column_bytes((sqlite3_stmt *)pStmt, col); in SqliteColumnBytes()
106 SqliteColumnType(void *pStmt, int col) SqliteColumnType() argument
[all...]
/base/hiviewdfx/hiview/base/event_store/include/
H A Dsys_event_query.h190 Cond(const std::string &col, Op op, const T &value): col_(col), op_(op), fieldValue_(value) {} in Cond() argument
193 Cond &And(const std::string &col, Op op, const T &value) in And() argument
195 andConds_.emplace_back(Cond(col, op, value)); in And()
267 SysEventQuery &Where(const std::string &col, Op op, const T &value) in Where() argument
269 cond_.And(col, op, value); in Where()
275 SysEventQuery &And(const std::string &col, Op op, const T &value) in And() argument
277 cond_.And(col, op, value); in And()
282 SysEventQuery &Order(const std::string &col, bool isAsc = true);
/base/hiviewdfx/hidumper/test/scripts/testModule/
H A Dutils.py85 row = [int(col.strip()) for col in line.split()]
/base/telephony/cellular_data/test/
H A Dcellular_data_observer_test.cpp121 std::string col = std::string(CELLULAR_DATA_COLUMN_ROAMING) + std::to_string(1); in HWTEST_F() local
122 ASSERT_TRUE(settingHelper->PutValue(uri, col, 1) == TELEPHONY_ERR_SUCCESS); in HWTEST_F()
/base/hiviewdfx/hiview/base/event_store/dao/
H A Dsys_event_query.cpp456 SysEventQuery &SysEventQuery::Order(const std::string &col, bool isAsc) in Order() argument
458 orderCol_ = std::make_pair<>(col, isAsc); in Order()

Completed in 3 milliseconds