/external/autotest/client/cros/ |
shill_temporary_profile.py | 21 self._manager.CreateProfile(self._profile_name)
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
netprov.h | 158 virtual HRESULT WINAPI CreateProfile(BSTR bstrXMLWirelessConfigProfile,BSTR bstrXMLConnectionConfigProfile,GUID *pAdapterInstanceGuid,ULONG *pulStatus) = 0; 166 HRESULT (WINAPI *CreateProfile)(IProvisioningProfileWireless *This,BSTR bstrXMLWirelessConfigProfile,BSTR bstrXMLConnectionConfigProfile,GUID *pAdapterInstanceGuid,ULONG *pulStatus); 176 #define IProvisioningProfileWireless_CreateProfile(This,bstrXMLWirelessConfigProfile,bstrXMLConnectionConfigProfile,pAdapterInstanceGuid,pulStatus) (This)->lpVtbl->CreateProfile(This,bstrXMLWirelessConfigProfile,bstrXMLConnectionConfigProfile,pAdapterInstanceGuid,pulStatus)
|
mapix.h | 122 #define MAPI_IPROFADMIN_METHODS(IPURE) MAPIMETHOD(GetLastError) (THIS_ HRESULT hResult,ULONG ulFlags,LPMAPIERROR *lppMAPIError) IPURE; MAPIMETHOD(GetProfileTable) (THIS_ ULONG ulFlags,LPMAPITABLE *lppTable) IPURE; MAPIMETHOD(CreateProfile) (THIS_ LPTSTR lpszProfileName,LPTSTR lpszPassword,ULONG_PTR ulUIParam,ULONG ulFlags) IPURE; MAPIMETHOD(DeleteProfile) (THIS_ LPTSTR lpszProfileName,ULONG ulFlags) IPURE; MAPIMETHOD(ChangeProfilePassword) (THIS_ LPTSTR lpszProfileName,LPTSTR lpszOldPassword,LPTSTR lpszNewPassword,ULONG ulFlags) IPURE; MAPIMETHOD(CopyProfile) (THIS_ LPTSTR lpszOldProfileName,LPTSTR lpszOldPassword,LPTSTR lpszNewProfileName,ULONG_PTR ulUIParam,ULONG ulFlags) IPURE; MAPIMETHOD(RenameProfile) (THIS_ LPTSTR lpszOldProfileName,LPTSTR lpszOldPassword,LPTSTR lpszNewProfileName,ULONG_PTR ulUIParam,ULONG ulFlags) IPURE; MAPIMETHOD(SetDefaultProfile) (THIS_ LPTSTR lpszProfileName,ULONG ulFlags) IPURE; MAPIMETHOD(AdminServices) (THIS_ LPTSTR lpszProfileName,LPTSTR lpszPassword,ULONG_PTR ulUIParam,ULONG ulFlags,LPSERVICEADMIN *lppServiceAdmin) IPURE;
|
msimcsdk.h | 230 virtual HRESULT WINAPI CreateProfile(BSTR bstrProfile,IDispatch **ppProfile) = 0; 248 HRESULT (WINAPI *CreateProfile)(IMSIMHost *This,BSTR bstrProfile,IDispatch **ppProfile); 268 #define IMSIMHost_CreateProfile(This,bstrProfile,ppProfile) (This)->lpVtbl->CreateProfile(This,bstrProfile,ppProfile) [all...] |
rtccore.h | [all...] |
/external/autotest/client/site_tests/network_ShillInitScripts/ |
mock_flimflam.py | 28 def CreateProfile(self, profile): 34 self.add_method_call('CreateProfile', profile)
|
/system/connectivity/shill/bin/ |
shill_login_user | 161 org.chromium.flimflam.Manager.CreateProfile string:$profile_name ||
|
/external/autotest/client/cros/scripts/ |
profile | 152 path = shill.manager.CreateProfile(name)
|
/external/pdfium/core/src/fxcodec/codec/ |
fx_codec_icc.cpp | 407 void* CCodec_IccModule::CreateProfile(ICodec_IccModule::IccParam* pIccParam, 478 void* pInputProfile = CreateProfile(pInputParam, Icc_CLASS_INPUT, &key); 482 void* pOutputProfile = CreateProfile(pOutputParam, Icc_CLASS_OUTPUT, &key); 495 pProofProfile = CreateProfile(pProofParam, Icc_CLASS_PROOF, &key); [all...] |
codec_int.h | 320 void* CreateProfile(ICodec_IccModule::IccParam* pIccParam,
|
/system/connectivity/shill/test-rpc-proxy/ |
proxy_dbus_shill_wifi_client.h | 72 bool CreateProfile(const std::string& profile_name) override;
|
proxy_rpc_server.cc | 41 XmlRpc::XmlRpcValue CreateProfile( 48 return shill_wifi_client->CreateProfile(profile_name); 198 bool is_success = shill_wifi_client->CreateProfile(kTestProfileName); 522 RegisterRpcMethod("create_profile", base::Bind(&CreateProfile));
|
proxy_shill_wifi_client.h | 91 virtual bool CreateProfile(const std::string& profile_name) = 0;
|
proxy_dbus_client.h | 117 bool CreateProfile(const std::string& profile_name);
|
proxy_dbus_client.cc | 364 bool ProxyDbusClient::CreateProfile(const std::string& profile_name) { 367 return shill_manager_proxy_.CreateProfile(
|
proxy_dbus_shill_wifi_client.cc | 356 bool ProxyDbusShillWifiClient::CreateProfile(const std::string& profile_name) { 357 return dbus_client_->CreateProfile(profile_name);
|
/system/connectivity/shill/test-scripts/ |
flimflam.py | 352 def CreateProfile(self, ident): 353 path = self.manager.CreateProfile(ident)
|
/system/connectivity/shill/dbus/ |
chromeos_manager_dbus_adaptor.cc | 143 bool ChromeosManagerDBusAdaptor::CreateProfile(brillo::ErrorPtr* error, 149 manager_->CreateProfile(name, &path, &e);
|
chromeos_manager_dbus_adaptor.h | 78 bool CreateProfile(brillo::ErrorPtr* error,
|
/external/autotest/client/cros/networking/ |
shill_xmlrpc_server.py | 63 self._wifi_proxy.manager.CreateProfile(profile_name)
|
/system/update_engine/include/shill/ |
dbus-proxy-mocks.h | 55 MOCK_METHOD4(CreateProfile,
|
/system/connectivity/shill/ |
manager.h | 220 void CreateProfile(const std::string& name, std::string* path, Error* error); [all...] |
manager_unittest.cc | 252 manager->CreateProfile(name, &path, &error); [all...] |
manager.cc | 374 void Manager::CreateProfile(const string& name, string* path, Error* error) { [all...] |