Home
last modified time | relevance | path

Searched refs:AuthDeviceGetServerSide (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/core/authentication/include/
H A Dauth_device.h43 int32_t AuthDeviceGetServerSide(int64_t authId, bool *isServer);
/ohos5.0/foundation/communication/dsoftbus/tests/core/authentication/unittest/
H A Dauth_manager_test.cpp700 EXPECT_TRUE(AuthDeviceGetServerSide(AUTH_SEQ, &isServer) == SOFTBUS_OK);
701 EXPECT_TRUE(AuthDeviceGetServerSide(AUTH_SEQ, nullptr) == SOFTBUS_INVALID_PARAM);
702 EXPECT_TRUE(AuthDeviceGetServerSide(AUTH_SEQ_3, &isServer) == SOFTBUS_AUTH_NOT_FOUND);
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_device.c278 int32_t AuthDeviceGetServerSide(int64_t authId, bool *isServer) in AuthDeviceGetServerSide() function
H A Dauth_interface.c603 return AuthDeviceGetServerSide(authId, isServer); in AuthGetServerSide()