Searched refs:Data_Asset (Results 1 - 10 of 10) sorted by relevance
/foundation/distributeddatamgr/relational_store/interfaces/ndk/include/ |
H A D | data_asset.h | 85 * @brief Define the Data_Asset structure type. 91 typedef struct Data_Asset Data_Asset; typedef 94 * @brief Set the name of the Data_Asset. 96 * @param asset Represents a pointer to an {@link Data_Asset} instance. 102 * @see Data_Asset 105 int OH_Data_Asset_SetName(Data_Asset *asset, const char *name); 108 * @brief Set the uri of the Data_Asset. 110 * @param asset Represents a pointer to an {@link Data_Asset} instance. 116 * @see Data_Asset [all...] |
H A D | oh_values_bucket.h | 144 * @brief Put the {@link Data_Asset} * value to this {@link OH_VBucket} object for the given column name. 148 * @param value Indicates the const {@link Data_Asset} * value. 155 int OH_VBucket_PutAsset(OH_VBucket *bucket, const char *field, Data_Asset *value); 158 * @brief Put the {@link Data_Asset} * value of given count to this {@link OH_VBucket} object for the given column name. 162 * @param value Indicates the {@link Data_Asset} value of given count. 170 int OH_VBucket_PutAssets(OH_VBucket *bucket, const char *field, Data_Asset **value, uint32_t count);
|
H A D | oh_cursor.h | 75 * Indicates the column type is {@link Data_Asset}. 81 * Indicates the column type is array of {@link Data_Asset}. 263 * @brief Function pointer. Obtains the value of the requested column as an {@link Data_Asset} instance. 268 * and the value of the requested column as an {@link Data_Asset} instance is written to this variable. 273 int (*getAsset)(OH_Cursor *cursor, int32_t columnIndex, Data_Asset *value); 276 * @brief Function pointer. Obtains the value of the requested column as an {@link Data_Asset} instance. 281 * and the value of the requested column as an {@link Data_Asset} instance is written to this variable. 287 int (*getAssets)(OH_Cursor *cursor, int32_t columnIndex, Data_Asset **value, uint32_t *length); 290 * @brief Function pointer. Obtains the count of the {@Data_Asset} in the given column.
|
/foundation/distributeddatamgr/relational_store/interfaces/ndk/src/ |
H A D | relational_asset.cpp | 25 int OH_Data_Asset_SetName(Data_Asset *asset, const char *name) in OH_Data_Asset_SetName() 34 int OH_Data_Asset_SetUri(Data_Asset *asset, const char *uri) in OH_Data_Asset_SetUri() 44 int OH_Data_Asset_SetPath(Data_Asset *asset, const char *path) in OH_Data_Asset_SetPath() 54 int OH_Data_Asset_SetCreateTime(Data_Asset *asset, int64_t createTime) in OH_Data_Asset_SetCreateTime() 64 int OH_Data_Asset_SetModifyTime(Data_Asset *asset, int64_t modifyTime) in OH_Data_Asset_SetModifyTime() 74 int OH_Data_Asset_SetSize(Data_Asset *asset, size_t size) in OH_Data_Asset_SetSize() 84 int OH_Data_Asset_SetStatus(Data_Asset *asset, Data_AssetStatus status) in OH_Data_Asset_SetStatus() 94 int OH_Data_Asset_GetName(Data_Asset *asset, char *name, size_t *length) in OH_Data_Asset_GetName() 114 int OH_Data_Asset_GetUri(Data_Asset *asset, char *uri, size_t *length) in OH_Data_Asset_GetUri() 135 int OH_Data_Asset_GetPath(Data_Asset *asse [all...] |
H A D | relational_cursor.h | 45 virtual int GetAsset(int32_t columnIndex, Data_Asset *value); 46 virtual int GetAssets(int32_t columnIndex, Data_Asset **value, uint32_t *length); 63 static int GetAsset(OH_Cursor *cursor, int32_t columnIndex, Data_Asset *value); 64 static int GetAssets(OH_Cursor *cursor, int32_t columnIndex, Data_Asset **value, uint32_t *length);
|
H A D | relational_asset.h | 22 struct Data_Asset { struct
|
H A D | relational_values_bucket.cpp | 127 int OH_VBucket_PutAsset(OH_VBucket *bucket, const char *field, Data_Asset *value) in OH_VBucket_PutAsset() 138 int OH_VBucket_PutAssets(OH_VBucket *bucket, const char *field, Data_Asset **value, uint32_t count) in OH_VBucket_PutAssets()
|
H A D | relational_cursor.cpp | 129 int RelationalCursor::GetAsset(OH_Cursor *cursor, int32_t columnIndex, Data_Asset *value) in GetAsset() 138 int RelationalCursor::GetAssets(OH_Cursor *cursor, int32_t columnIndex, Data_Asset **value, uint32_t *length) in GetAssets() 333 int RelationalCursor::GetAsset(int32_t columnIndex, Data_Asset *value) in GetAsset() 348 int RelationalCursor::GetAssets(int32_t columnIndex, Data_Asset **value, uint32_t *length) in GetAssets()
|
/foundation/distributeddatamgr/relational_store/test/ndk/unittest/ |
H A D | rdb_asset_test.cpp | 102 Data_Asset *asset = OH_Data_Asset_CreateOne();
in HWTEST_F() 124 Data_Asset *asset = OH_Data_Asset_CreateOne();
in HWTEST_F() 146 Data_Asset *asset = OH_Data_Asset_CreateOne();
in HWTEST_F() 188 Data_Asset *asset = OH_Data_Asset_CreateOne();
in HWTEST_F() 214 Data_Asset *asset = OH_Data_Asset_CreateOne();
in HWTEST_F() 240 Data_Asset *asset = OH_Data_Asset_CreateOne();
in HWTEST_F()
|
H A D | rdb_cursor_test.cpp | 47 static void SetAsset(Data_Asset *asset, int index); 124 Data_Asset *asset1 = OH_Data_Asset_CreateOne(); in CreateAssetTable() 126 Data_Asset *asset2 = OH_Data_Asset_CreateOne(); in CreateAssetTable() 131 Data_Asset **assets1 = OH_Data_Asset_CreateMultiple(assetsCount); in CreateAssetTable() 142 Data_Asset **assets2 = OH_Data_Asset_CreateMultiple(assetsCount); in CreateAssetTable() 156 void RdbNativeCursorTest::SetAsset(Data_Asset *asset, int index) in SetAsset() 516 Data_Asset *asset = OH_Data_Asset_CreateOne(); in HWTEST_F() 581 Data_Asset **assets = OH_Data_Asset_CreateMultiple(assetCount); in HWTEST_F() 584 Data_Asset *asset = assets[1]; in HWTEST_F() 636 Data_Asset *asse in HWTEST_F() [all...] |
Completed in 5 milliseconds