Home
last modified time | relevance | path

Searched refs:addedRows (Results 1 - 4 of 4) sorted by relevance

/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/include/
H A Dshare_block.h38 int addedRows; member
49 addedRows = 0; in SharedBlockInfo()
59 int SeriAddRow(void *pCtx, int addedRows);
61 int SeriFinish(void *pCtx, int addedRows, int totalRows);
62 int SeriPutString(void *pCtx, int addedRows, int column, const char *text, int size);
63 int SeriPutLong(void *pCtx, int addedRows, int column, sqlite3_int64 value);
64 int SeriPutDouble(void *pCtx, int addedRows, int column, double value);
65 int SeriPutBlob(void *pCtx, int addedRows, int column, const void *blob, int len);
66 int SeriPutNull(void *pCtx, int addedRows, int column);
67 int SeriPutOther(void *pCtx, int addedRows, in
[all...]
H A Dshared_block_serializer_info.h32 int AddRow(int addedRows);
34 int Finish(int addedRows, int totalRows);
79 int (*xAddRow)(void *pCtx, int addedRows);
81 int (*xFinish)(void *pCtx, int addedRows, int totalRows);
82 int (*xPutString)(void *pCtx, int addedRows, int column, const char *text, int len);
83 int (*xPutLong)(void *pCtx, int addedRows, int column, sqlite3_int64 value);
84 int (*xPutDouble)(void *pCtx, int addedRows, int column, double value);
85 int (*xPutBlob)(void *pCtx, int addedRows, int column, const void *blob, int len);
86 int (*xPutNull)(void *pCtx, int addedRows, int column);
87 int (*xPutOther)(void *pCtx, int addedRows, in
[all...]
/foundation/distributeddatamgr/relational_store/frameworks/native/rdb/src/
H A Dshare_block.cpp36 int SeriAddRow(void *pCtx, int addedRows) in SeriAddRow() argument
39 return serializer->AddRow(addedRows); in SeriAddRow()
48 int SeriFinish(void *pCtx, int addedRows, int totalRows) in SeriFinish() argument
51 return serializer->Finish(addedRows, totalRows); in SeriFinish()
54 int SeriPutString(void *pCtx, int addedRows, int column, const char *text, int size) in SeriPutString() argument
57 return serializer->PutString(addedRows, column, text, size); in SeriPutString()
60 int SeriPutLong(void *pCtx, int addedRows, int column, sqlite3_int64 value) in SeriPutLong() argument
63 return serializer->PutLong(addedRows, column, value); in SeriPutLong()
66 int SeriPutDouble(void *pCtx, int addedRows, int column, double value) in SeriPutDouble() argument
69 return serializer->PutDouble(addedRows, colum in SeriPutDouble()
72 SeriPutBlob(void *pCtx, int addedRows, int column, const void *blob, int len) SeriPutBlob() argument
78 SeriPutNull(void *pCtx, int addedRows, int column) SeriPutNull() argument
84 SeriPutOther(void *pCtx, int addedRows, int column) SeriPutOther() argument
197 FillOneRow(AppDataFwk::SharedBlock *sharedBlock, sqlite3_stmt *statement, int numColumns, int startPos, int addedRows) FillOneRow() argument
245 FillOneRowOfString(AppDataFwk::SharedBlock *sharedBlock, sqlite3_stmt *statement, int startPos, int addedRows, int pos) FillOneRowOfString() argument
265 FillOneRowOfLong(AppDataFwk::SharedBlock *sharedBlock, sqlite3_stmt *statement, int startPos, int addedRows, int pos) FillOneRowOfLong() argument
278 FillOneRowOfFloat(AppDataFwk::SharedBlock *sharedBlock, sqlite3_stmt *statement, int startPos, int addedRows, int pos) FillOneRowOfFloat() argument
291 FillOneRowOfBlob(AppDataFwk::SharedBlock *sharedBlock, sqlite3_stmt *statement, int startPos, int addedRows, int pos) FillOneRowOfBlob() argument
318 FillOneRowOfNull(AppDataFwk::SharedBlock *sharedBlock, sqlite3_stmt *statement, int startPos, int addedRows, int pos) FillOneRowOfNull() argument
[all...]
H A Dshared_block_serializer_info.cpp34 int SharedBlockSerializerInfo::AddRow(int addedRows) in AddRow() argument
39 raddedRows = addedRows + 1; in AddRow()
62 int SharedBlockSerializerInfo::Finish(int addedRows, int totalRows) in Finish() argument
64 raddedRows = addedRows; in Finish()

Completed in 2 milliseconds