Home
last modified time | relevance | path

Searched refs:CapacityExpansion (Results 1 – 2 of 2) sorted by relevance

/drivers/peripheral/user_auth/test/unittest/database/
Didm_file_manager_test.cpp23 extern ResultCode CapacityExpansion(Buffer *object, uint32_t targetCapacity);
56 EXPECT_EQ(CapacityExpansion(nullptr, 0), RESULT_BAD_PARAM);
61 EXPECT_EQ(CapacityExpansion(object, 0), RESULT_BAD_PARAM);
68 EXPECT_EQ(CapacityExpansion(object, 0), RESULT_SUCCESS);
76 EXPECT_EQ(CapacityExpansion(object, targetCapacity), RESULT_BAD_PARAM);
/drivers/peripheral/user_auth/hdi_service/database/src/
Didm_file_manager.c48 IAM_STATIC ResultCode CapacityExpansion(Buffer *object, uint32_t targetCapacity) in CapacityExpansion() function
85 ResultCode result = CapacityExpansion(parcel, size); in StreamWrite()