Searched refs:string (Results 101 - 125 of 2375) sorted by relevance

1234567891011>>

/system/core/adb/
H A Dadb_listeners.h22 #include <string>
33 InstallStatus install_listener(const std::string& local_name,
37 std::string* error);
39 std::string format_listeners();
/system/core/debuggerd/test/
H A Delf_fake.cpp19 #include <string>
23 std::string g_build_id;
25 void elf_set_fake_build_id(const std::string& build_id) {
29 bool elf_get_build_id(Backtrace*, uintptr_t, std::string* build_id) {
/system/extras/simpleperf/
H A Denvironment_fake.cpp20 bool ProcessKernelSymbols(const std::string&, std::function<bool(const KernelSymbol&)>) {
H A Dtest_util.h18 #include <string>
23 static const std::string SLEEP_SEC = "0.001";
27 void ParseSymbol(const ElfFileSymbol& symbol, std::map<std::string, ElfFileSymbol>* symbols);
28 void CheckElfFileSymbols(const std::map<std::string, ElfFileSymbol>& symbols);
/system/webservd/libwebserv/
H A Dresponse_impl.h19 #include <string>
36 void AddHeader(const std::string& header_name,
37 const std::string& value) override;
39 const std::vector<std::pair<std::string, std::string>>& headers) override;
42 const std::string& mime_type) override;
44 const std::string& text,
45 const std::string& mime_type) override;
48 const std::map<std::string, std::string>
[all...]
/system/connectivity/apmanager/
H A Dfake_device_adaptor.h20 #include <string>
33 void SetDeviceName(const std::string& device_name) override;
34 std::string GetDeviceName() override;
35 void SetPreferredApInterface(const std::string& interface_name) override;
36 std::string GetPreferredApInterface() override;
41 std::string device_name_;
42 std::string preferred_ap_interface_;
H A Ddevice_adaptor_interface.h20 #include <string>
28 virtual void SetDeviceName(const std::string& device_name) = 0;
29 virtual std::string GetDeviceName() = 0;
30 virtual void SetPreferredApInterface(const std::string& interface_name) = 0;
31 virtual std::string GetPreferredApInterface() = 0;
/system/connectivity/shill/cellular/
H A Dmock_modem.h20 #include <string>
30 MockModem(const std::string& service,
31 const std::string& path,
43 std::string* name));
45 std::string(void));
47 const std::string& link_name,
48 const std::string& device_name,
/system/connectivity/shill/supplicant/
H A Dmock_supplicant_process_proxy.h21 #include <string>
36 bool(const KeyValueStore& args, std::string* rpc_identifier));
38 bool(const std::string& ifname, std::string* rpc_identifier));
39 MOCK_METHOD1(RemoveInterface, bool(const std::string& rpc_identifier));
40 MOCK_METHOD1(GetDebugLevel, bool(std::string* level));
41 MOCK_METHOD1(SetDebugLevel, bool(const std::string& level));
H A Dsupplicant_process_proxy_interface.h20 #include <string>
32 std::string* rpc_identifier) = 0;
33 virtual bool GetInterface(const std::string& ifname,
34 std::string* rpc_identifier) = 0;
35 virtual bool RemoveInterface(const std::string& rpc_identifier) = 0;
36 virtual bool SetDebugLevel(const std::string& level) = 0;
37 virtual bool GetDebugLevel(std::string* level) = 0;
/system/firewalld/
H A Dmock_iptables.h18 #include <string>
34 bool(const std::string&, ProtocolEnum, uint16_t, const std::string&));
38 bool(const std::string&, ProtocolEnum, uint16_t, const std::string&));
40 MOCK_METHOD2(ApplyMasquerade, bool(const std::string&, bool));
41 MOCK_METHOD2(ApplyMarkForUserTraffic, bool(const std::string&, bool));
/system/netd/server/
H A DNetwork.h23 #include <string>
43 bool hasInterface(const std::string& interface) const;
44 const std::set<std::string>& getInterfaces() const;
47 virtual int addInterface(const std::string& interface) WARN_UNUSED_RESULT = 0;
48 virtual int removeInterface(const std::string& interface) WARN_UNUSED_RESULT = 0;
51 std::string toString() const;
57 std::set<std::string> mInterfaces;
/system/tpm/trunks/
H A Dauthorization_delegate.h20 #include <string>
41 const std::string& command_hash,
44 std::string* authorization) = 0;
50 virtual bool CheckResponseAuthorization(const std::string& response_hash,
51 const std::string& authorization) = 0;
54 virtual bool EncryptCommandParameter(std::string* parameter) = 0;
57 virtual bool DecryptResponseParameter(std::string* parameter) = 0;
H A Dmock_authorization_delegate.h20 #include <string>
34 MOCK_METHOD4(GetCommandAuthorization, bool(const std::string&,
37 std::string*));
38 MOCK_METHOD2(CheckResponseAuthorization, bool(const std::string&,
39 const std::string&));
40 MOCK_METHOD1(EncryptCommandParameter, bool(std::string*));
41 MOCK_METHOD1(DecryptResponseParameter, bool(std::string*));
H A Dmock_tpm_utility.h20 #include <string>
37 MOCK_METHOD1(AllocatePCR, TPM_RC(const std::string&));
38 MOCK_METHOD3(TakeOwnership, TPM_RC(const std::string&,
39 const std::string&,
40 const std::string&));
41 MOCK_METHOD2(StirRandom, TPM_RC(const std::string&, AuthorizationDelegate*));
44 std::string*));
46 TPM_RC(int, const std::string&, AuthorizationDelegate*));
47 MOCK_METHOD2(ReadPCR, TPM_RC(int, std::string*));
51 const std::string
[all...]
H A Dcommand_transceiver.h20 #include <string>
30 typedef base::Callback<void(const std::string& response)> ResponseCallback;
39 const std::string& command,
45 virtual std::string SendCommandAndWait(const std::string& command) = 0;
/system/connectivity/shill/
H A Dipconfig_adaptor_stub.h20 #include <string>
33 explicit IPConfigAdaptorStub(const std::string& id);
35 const std::string& GetRpcIdentifier() override { return rpc_id(); }
36 void EmitBoolChanged(const std::string& name, bool value) override {};
37 void EmitUintChanged(const std::string& name, uint32_t value) override {};
38 void EmitIntChanged(const std::string& name, int value) override {};
39 void EmitStringChanged(const std::string& name,
40 const std::string& value) override {};
41 void EmitStringsChanged(const std::string& name,
42 const std::vector<std::string>
[all...]
/system/connectivity/shill/ethernet/
H A Dethernet_temporary_service.cc19 #include <string>
26 using std::string;
35 const string& storage_identifier)
46 std::string EthernetTemporaryService::GetDeviceRpcId(Error* /*error*/) const {
50 string EthernetTemporaryService::GetStorageIdentifier() const {
/system/connectivity/shill/wifi/
H A Dmock_tdls_manager.h20 #include <string>
36 std::string(const std::string& peer_mac_address,
37 const std::string& operation,
40 void(const std::string& peer_mac_address));
/system/nativepower/daemon/
H A Dsystem_property_setter.h20 #include <string>
33 virtual bool SetProperty(const std::string& key,
34 const std::string& value) = 0;
44 bool SetProperty(const std::string& key, const std::string& value) override;
H A Dsystem_property_setter_stub.cc25 std::string SystemPropertySetterStub::GetProperty(
26 const std::string& key) const {
28 return it != properties_.end() ? it->second : std::string();
31 bool SystemPropertySetterStub::SetProperty(const std::string& key,
32 const std::string& value) {
/system/tools/aidl/
H A Dimport_resolver.h20 #include <string>
33 const std::vector<std::string>& import_paths);
38 std::string FindImportFile(const std::string& canonical_name) const;
42 std::vector<std::string> import_paths_;
/system/update_engine/common/
H A Dfake_prefs.h21 #include <string>
42 bool GetString(const std::string& key, std::string* value) const override;
43 bool SetString(const std::string& key, const std::string& value) override;
44 bool GetInt64(const std::string& key, int64_t* value) const override;
45 bool SetInt64(const std::string& key, const int64_t value) override;
46 bool GetBoolean(const std::string& key, bool* value) const override;
47 bool SetBoolean(const std::string& key, const bool value) override;
49 bool Exists(const std::string
[all...]
/system/vold/fs/
H A DVfat.h22 #include <string>
30 status_t Check(const std::string& source);
31 status_t Mount(const std::string& source, const std::string& target, bool ro,
34 status_t Format(const std::string& source, unsigned long numSectors);
/system/weaved/buffet/
H A Dencryptor.h19 #include <string>
33 virtual bool EncryptWithAuthentication(const std::string& plaintext,
34 std::string* ciphertext) = 0;
38 virtual bool DecryptWithAuthentication(const std::string& ciphertext,
39 std::string* plaintext) = 0;

Completed in 1704 milliseconds

1234567891011>>