Home
last modified time | relevance | path

Searched refs:destTypeId (Results 1 - 2 of 2) sorted by relevance

/foundation/distributeddatamgr/udmf/interfaces/ndk/data/
H A Dutd.h173 * @param destTypeId Represents target type id.
175 * {@code false} Represents srcTypeId not belongs to destTypeId.
176 * {@code true} Represents srcTypeId belongs to destTypeId.
179 bool OH_Utd_BelongsTo(const char* srcTypeId, const char* destTypeId);
185 * @param destTypeId Represents target type id.
187 * {@code false} Represents srcTypeId not lower level to destTypeId.
188 * {@code true} Represents srcTypeId lower level to destTypeId.
191 bool OH_Utd_IsLower(const char* srcTypeId, const char* destTypeId);
197 * @param destTypeId Represents target type id.
199 * {@code false} Represents srcTypeId not higher level to destTypeId
[all...]
/foundation/distributeddatamgr/udmf/framework/ndkimpl/data/
H A Dutd.cpp214 bool OH_Utd_BelongsTo(const char* srcTypeId, const char* destTypeId) in OH_Utd_BelongsTo() argument
216 if (srcTypeId == nullptr || destTypeId == nullptr) { in OH_Utd_BelongsTo()
226 if (typeDescriptor->BelongsTo(destTypeId, checkResult) != Status::E_OK) { in OH_Utd_BelongsTo()
232 bool OH_Utd_IsLower(const char* srcTypeId, const char* destTypeId) in OH_Utd_IsLower() argument
234 if (srcTypeId == nullptr || destTypeId == nullptr) { in OH_Utd_IsLower()
244 if (typeDescriptor->IsLowerLevelType(destTypeId, checkResult) != Status::E_OK) { in OH_Utd_IsLower()
250 bool OH_Utd_IsHigher(const char* srcTypeId, const char* destTypeId) in OH_Utd_IsHigher() argument
252 if (srcTypeId == nullptr || destTypeId == nullptr) { in OH_Utd_IsHigher()
262 if (typeDescriptor->IsHigherLevelType(destTypeId, checkResult) != Status::E_OK) { in OH_Utd_IsHigher()

Completed in 1 milliseconds