/base/customization/enterprise_device_management/interfaces/kits/wifi_manager/src/ |
H A D | wifi_manager_addon.cpp | 290 asyncCallbackInfo->pwd);
in SetWifiProfile() 326 asyncCallbackInfo->wifiDeviceConfig, asyncCallbackInfo->pwd);
in NativeSetWifiProfile() 348 WifiPassword &pwd)
in JsObjToDeviceConfig() 366 pwd.preSharedKey = (char*) malloc(ret.size());
in JsObjToDeviceConfig() 367 if (pwd.preSharedKey == nullptr) {
in JsObjToDeviceConfig() 371 if (strncpy_s(pwd.preSharedKey, ret.size(), ret.data(), ret.size()) != ERR_OK) {
in JsObjToDeviceConfig() 376 pwd.preSharedKeySize = ret.size();
in JsObjToDeviceConfig() 378 if (!ConvertEncryptionMode(type, config, pwd)) {
in JsObjToDeviceConfig() 382 return ProcessEapConfig(env, object, config.wifiEapConfig, pwd);
in JsObjToDeviceConfig() 387 bool WifiManagerAddon::ConvertEncryptionMode(int32_t securityType, Wifi::WifiDeviceConfig &config, WifiPassword &pwd)
in ConvertEncryptionMode() argument 347 JsObjToDeviceConfig(napi_env env, napi_value object, Wifi::WifiDeviceConfig &config, WifiPassword &pwd) JsObjToDeviceConfig() argument 474 ProcessEapConfig(napi_env env, napi_value object, Wifi::WifiEapConfig &eapConfig, WifiPassword &pwd) ProcessEapConfig() argument 497 ProcessEapPeapConfig(napi_env env, napi_value object, Wifi::WifiEapConfig &eapConfig, WifiPassword &pwd) ProcessEapPeapConfig() argument 599 WifiPassword pwd; SetWifiProfileSync() local [all...] |
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/ |
H A D | ark_web_js_http_auth_result_impl.cpp | 32 bool ArkWebJsHttpAuthResultImpl::Confirm(const ArkWebString& user_name, const ArkWebString& pwd) in Confirm() argument 34 return nweb_js_http_auth_result_->Confirm(ArkWebStringStructToClass(user_name), ArkWebStringStructToClass(pwd)); in Confirm()
|
H A D | ark_web_js_http_auth_result_impl.h | 40 bool Confirm(const ArkWebString& user_name, const ArkWebString& pwd) override;
|
/base/customization/enterprise_device_management/interfaces/kits/wifi_manager/include/ |
H A D | wifi_manager_addon.h | 42 WifiPassword pwd;
member 96 WifiPassword &pwd);
97 static bool ConvertEncryptionMode(int32_t securityType, Wifi::WifiDeviceConfig &config, WifiPassword &pwd);
101 Wifi::WifiEapConfig &eapConfig, WifiPassword &pwd);
103 Wifi::WifiEapConfig &eapConfig, WifiPassword &pwd);
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/ |
H A D | ark_web_js_http_auth_result_wrapper.cpp | 32 bool ArkWebJsHttpAuthResultWrapper::Confirm(const std::string& user_name, const std::string& pwd) in Confirm() argument 34 ArkWebString stPwd = ArkWebStringClassToStruct(pwd); in Confirm()
|
H A D | ark_web_js_http_auth_result_wrapper.h | 38 bool Confirm(const std::string& user_name, const std::string& pwd) override;
|
/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/ |
H A D | ark_web_js_http_auth_result.h | 38 virtual bool Confirm(const ArkWebString& user_name, const ArkWebString& pwd) = 0;
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb_js_http_auth_result.h | 31 virtual bool Confirm(const std::string& userName, const std::string& pwd) = 0;
|
/base/customization/enterprise_device_management/test/unittest/interface/inner_api/proxy/ |
H A D | wifi_manager_proxy_test.cpp | 112 WifiPassword pwd;
in HWTEST_F() local 116 int32_t ret = wifiManagerProxy->SetWifiProfile(admin, config, pwd);
in HWTEST_F() 132 WifiPassword pwd;
in HWTEST_F() local 133 int32_t ret = wifiManagerProxy->SetWifiProfile(admin, config, pwd);
in HWTEST_F()
|
/base/security/certificate_framework/frameworks/adapter/v1.0/inc/ |
H A D | x509_cert_chain_openssl.h | 32 const CfBlob *keyStore, const CfBlob *pwd, HcfX509TrustAnchorArray **trustAnchorArray);
|
/base/customization/enterprise_device_management/interfaces/inner_api/wifi_manager/include/ |
H A D | wifi_manager_proxy.h | 35 WifiPassword &pwd, bool isSync = false);
|
/base/customization/enterprise_device_management/interfaces/inner_api/wifi_manager/src/ |
H A D | wifi_manager_proxy.cpp | 68 WifiPassword &pwd, bool isSync) in SetWifiProfile() 78 MessageParcelUtils::WriteWifiDeviceConfig(config, data, pwd); in SetWifiProfile() 67 SetWifiProfile(const AppExecFwk::ElementName &admin, Wifi::WifiDeviceConfig &config, WifiPassword &pwd, bool isSync) SetWifiProfile() argument
|
/base/security/certificate_framework/interfaces/inner_api/certificate/ |
H A D | x509_cert_chain.h | 75 const CfBlob *keyStore, const CfBlob *pwd, HcfX509TrustAnchorArray **trustAnchorArray);
|
/base/security/certificate_framework/frameworks/core/v1.0/certificate/ |
H A D | x509_cert_chain.c | 245 const CfBlob *keyStore, const CfBlob *pwd, HcfX509TrustAnchorArray **trustAnchorArray) in HcfCreateTrustAnchorWithKeyStore() 247 if (keyStore == NULL || pwd == NULL || trustAnchorArray == NULL) { in HcfCreateTrustAnchorWithKeyStore() 258 return func->createTrustAnchorFunc(keyStore, pwd, trustAnchorArray); in HcfCreateTrustAnchorWithKeyStore() 244 HcfCreateTrustAnchorWithKeyStore( const CfBlob *keyStore, const CfBlob *pwd, HcfX509TrustAnchorArray **trustAnchorArray) HcfCreateTrustAnchorWithKeyStore() argument
|
/base/security/certificate_framework/test/unittest/v1.0/src/ |
H A D | crypto_x509_cert_chain_test.cpp | 2062 CfBlob pwd; in HWTEST_F() local 2067 pwd.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_testKeystorePwd)); in HWTEST_F() 2068 pwd.size = strlen(g_testKeystorePwd) + 1; in HWTEST_F() 2069 CfResult result = HcfX509CreateTrustAnchorWithKeyStoreFunc(&keyStore, &pwd, &trustAnchorArray); in HWTEST_F() 2077 result = HcfX509CreateTrustAnchorWithKeyStoreFunc(NULL, &pwd, &trustAnchorArray); in HWTEST_F() 2083 result = HcfX509CreateTrustAnchorWithKeyStoreFunc(&keyStore, &pwd, NULL); in HWTEST_F() 2098 result = HcfX509CreateTrustAnchorWithKeyStoreFunc(&keyStore, &pwd, &trustAnchorArray); in HWTEST_F() 2106 CfBlob pwd; in HWTEST_F() local 2111 pwd.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_testKeystorePwd)); in HWTEST_F() 2112 pwd in HWTEST_F() 2151 CfBlob pwd; HWTEST_F() local 2189 CfBlob pwd; HWTEST_F() local 2225 CfBlob pwd; HWTEST_F() local 2260 CfBlob pwd; HWTEST_F() local [all...] |
/base/customization/enterprise_device_management/common/native/include/plugin_utils/ |
H A D | message_parcel_utils.h | 36 static void WriteWifiDeviceConfig(Wifi::WifiDeviceConfig &config, MessageParcel &data, WifiPassword &pwd);
|
/base/security/certificate_framework/test/fuzztest/v1.0/x509certchain_fuzzer/ |
H A D | x509certchain_fuzzer.cpp | 773 CfBlob pwd; in OneCreateTrustAnchorWithKeyStore() local 778 pwd.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_testKeystorePwd)); in OneCreateTrustAnchorWithKeyStore() 779 pwd.size = sizeof(g_testKeystorePwd); in OneCreateTrustAnchorWithKeyStore() 780 CfResult result = HcfCreateTrustAnchorWithKeyStore(&keyStore, &pwd, &trustAnchorArray); in OneCreateTrustAnchorWithKeyStore() 796 CfBlob pwd; in X509BuildResultCreateFuzzTest() local 801 pwd.data = reinterpret_cast<uint8_t *>(const_cast<char *>(g_testKeystorePwd)); in X509BuildResultCreateFuzzTest() 802 pwd.size = sizeof(g_testKeystorePwd); in X509BuildResultCreateFuzzTest() 803 CfResult result = HcfCreateTrustAnchorWithKeyStore(&keyStore, &pwd, &trustAnchorArray); in X509BuildResultCreateFuzzTest()
|
/base/startup/appspawn/test/mock/ |
H A D | app_spawn_stub.cpp | 26 #include <pwd.h>
|
H A D | app_system_stub.c | 22 #include <pwd.h>
|
/base/customization/enterprise_device_management/common/native/src/plugin_utils/ |
H A D | message_parcel_utils.cpp | 25 WifiPassword &pwd) in WriteWifiDeviceConfig() 37 WriteCString(data, pwd.preSharedKey); in WriteWifiDeviceConfig() 39 WriteCString(data, pwd.wepKey); in WriteWifiDeviceConfig() 54 WriteCString(data, pwd.password); in WriteWifiDeviceConfig() 24 WriteWifiDeviceConfig(Wifi::WifiDeviceConfig &config, MessageParcel &data, WifiPassword &pwd) WriteWifiDeviceConfig() argument
|
/base/startup/init/services/begetctl/ |
H A D | begetctl_cmd.c | 19 #include <pwd.h>
|
/base/security/certificate_framework/frameworks/js/napi/certificate/src/ |
H A D | napi_x509_cert_chain.cpp | 57 CfBlob *pwd = nullptr; member 124 CfBlobDataClearAndFree(context->pwd); in DeleteCertChainContext() 125 CfFree(context->pwd); in DeleteCertChainContext() 505 HcfCreateTrustAnchorWithKeyStore(context->keyStore, context->pwd, &context->trustAnchorArray); in CreateTrustAnchorsWithKeyStoreExecute() 692 context->pwd = CertGetBlobFromStringJSParams(env, param2); in CreateTrustAnchorsWithKeyStore() 693 if (context->pwd == nullptr) { in CreateTrustAnchorsWithKeyStore()
|
/base/msdp/device_status/utils/common/src/ |
H A D | utility.cpp | 19 #include <pwd.h>
|
/base/tee/tee_client/services/tlogcat/src/ |
H A D | tarzip.c | 23 #include <pwd.h>
|
/base/customization/enterprise_device_management/test/unittest/services/edm_plugin/src/ |
H A D | message_parcel_utils_test.cpp | 42 WifiPassword pwd; in HWTEST_F() local 82 MessageParcelUtils::WriteWifiDeviceConfig(config, data, pwd); in HWTEST_F()
|