Home
last modified time | relevance | path

Searched refs:OsAccount_ErrCode (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/docs/zh-cn/application-dev/reference/apis-basic-services-kit/
H A D_os_account.md26 | typedef enum [OsAccount_ErrCode](#osaccount_errcode-1) [OsAccount_ErrCode](#osaccount_errcode) | …
33 | [OsAccount_ErrCode](#osaccount_errcode-1) {<br/>OS_ACCOUNT_ERR_OK = 0,<br/>OS_ACCOUNT_ERR_INTERNA…
40 | [OsAccount_ErrCode](#osaccount_errcode) [OH_OsAccount_GetName](#oh_osaccount_getname) (char \*buf…
46 ### OsAccount_ErrCode subsection
49 typedef enum OsAccount_ErrCode OsAccount_ErrCode
62 ### OsAccount_ErrCode subsection
65 enum OsAccount_ErrCode
87 OsAccount_ErrCode OH_OsAccount_GetName (char *buffer, size_t buffer_size)
H A Dos__account__common_8h.md24 | typedef enum [OsAccount_ErrCode](_os_account.md#osaccount_errcode-1) [OsAccount_ErrCode](_os_acco…
31 | [OsAccount_ErrCode](_os_account.md#osaccount_errcode-1) {<br/>OS_ACCOUNT_ERR_OK = 0,<br/>OS_ACCOU…
H A Dos__account_8h.md24 | [OsAccount_ErrCode](_os_account.md#osaccount_errcode) [OH_OsAccount_GetName](_os_account.md#oh_os…
/ohos5.0/docs/en/application-dev/reference/apis-basic-services-kit/
H A D_os_account.md26 | typedef enum [OsAccount_ErrCode](#osaccount_errcode-1) [OsAccount_ErrCode](#osaccount_errcode) | …
33 | [OsAccount_ErrCode](#osaccount_errcode-1) {<br>OS_ACCOUNT_ERR_OK = 0,<br>OS_ACCOUNT_ERR_INTERNAL_…
40 | [OsAccount_ErrCode](#osaccount_errcode) [OH_OsAccount_GetName](#oh_osaccount_getname) (char \*buf…
46 ### OsAccount_ErrCode subsection
49 typedef enum OsAccount_ErrCode OsAccount_ErrCode
62 ### OsAccount_ErrCode subsection
65 enum OsAccount_ErrCode
87 OsAccount_ErrCode OH_OsAccount_GetName (char *buffer, size_t buffer_size)
H A Dos__account__common_8h.md24 | typedef enum [OsAccount_ErrCode](_os_account.md#osaccount_errcode-1) [OsAccount_ErrCode](_os_acco…
31 | [OsAccount_ErrCode](_os_account.md#osaccount_errcode-1) {<br>OS_ACCOUNT_ERR_OK = 0,<br>OS_ACCOUNT…
H A Dos__account_8h.md24 | [OsAccount_ErrCode](_os_account.md#osaccount_errcode) [OH_OsAccount_GetName](_os_account.md#oh_os…
/ohos5.0/base/account/os_account/interfaces/kits/capi/osaccount/src/
H A Dos_account.cpp24 OsAccount_ErrCode OH_OsAccount_GetName(char *buffer, size_t buffer_size) in OH_OsAccount_GetName()
28 return OsAccount_ErrCode::OS_ACCOUNT_ERR_INVALID_PARAMETER; in OH_OsAccount_GetName()
34 return OsAccount_ErrCode::OS_ACCOUNT_ERR_INTERNAL_ERROR; in OH_OsAccount_GetName()
40 return OsAccount_ErrCode::OS_ACCOUNT_ERR_INVALID_PARAMETER; in OH_OsAccount_GetName()
45 return OsAccount_ErrCode::OS_ACCOUNT_ERR_INTERNAL_ERROR; in OH_OsAccount_GetName()
48 return OsAccount_ErrCode::OS_ACCOUNT_ERR_OK; in OH_OsAccount_GetName()
/ohos5.0/base/account/os_account/interfaces/kits/capi/test/unittest/osaccount/
H A Dos_account_ndk_test.cpp68 …EXPECT_EQ(OH_OsAccount_GetName(nullptr, MAX_NAME_LENGTH), OsAccount_ErrCode::OS_ACCOUNT_ERR_INVALI…
69 EXPECT_EQ(OH_OsAccount_GetName(str, 0), OsAccount_ErrCode::OS_ACCOUNT_ERR_INVALID_PARAMETER);
70 EXPECT_EQ(OH_OsAccount_GetName(str, MAX_NAME_LENGTH), OsAccount_ErrCode::OS_ACCOUNT_ERR_OK);
/ohos5.0/base/account/os_account/interfaces/kits/capi/osaccount/include/
H A Dos_account_common.h44 typedef enum OsAccount_ErrCode { enum
53 } OsAccount_ErrCode; typedef
H A Dos_account.h54 OsAccount_ErrCode OH_OsAccount_GetName(char *buffer, size_t buffer_size);