Searched refs:string (Results 26 - 50 of 2375) sorted by relevance

1234567891011>>

/system/nativepower/daemon/
H A Dsystem_property_setter_stub.h21 #include <string>
35 // Returns the value for |key|. An empty string is returned for an unset
37 std::string GetProperty(const std::string& key) const;
40 bool SetProperty(const std::string& key, const std::string& value) override;
43 std::map<std::string, std::string> properties_;
/system/tools/aidl/
H A Dio_delegate.h23 #include <string>
40 static bool GetAbsolutePath(const std::string& path,
41 std::string* absolute_path);
45 virtual std::unique_ptr<std::string> GetFileContents(
46 const std::string& filename,
47 const std::string& content_suffix = "") const;
50 const std::string& file_path) const;
52 virtual bool FileIsReadable(const std::string& path) const;
55 const std::string& base_dir,
56 const std::vector<std::string>
[all...]
/system/tpm/tpm_manager/common/
H A Dprint_tpm_ownership_interface_proto.h22 #include <string>
28 std::string GetProtoDebugStringWithIndent(const GetTpmStatusRequest& value,
30 std::string GetProtoDebugString(const GetTpmStatusRequest& value);
31 std::string GetProtoDebugStringWithIndent(const GetTpmStatusReply& value,
33 std::string GetProtoDebugString(const GetTpmStatusReply& value);
34 std::string GetProtoDebugStringWithIndent(const TakeOwnershipRequest& value,
36 std::string GetProtoDebugString(const TakeOwnershipRequest& value);
37 std::string GetProtoDebugStringWithIndent(const TakeOwnershipReply& value,
39 std::string GetProtoDebugString(const TakeOwnershipReply& value);
40 std::string GetProtoDebugStringWithInden
[all...]
H A Dprint_local_data_proto.h22 #include <string>
28 std::string GetProtoDebugStringWithIndent(const LocalData& value,
30 std::string GetProtoDebugString(const LocalData& value);
H A Dprint_tpm_manager_status_proto.h22 #include <string>
28 std::string GetProtoDebugStringWithIndent(TpmManagerStatus value,
30 std::string GetProtoDebugString(TpmManagerStatus value);
/system/update_engine/common/
H A Dmock_prefs.h20 #include <string>
32 bool(const std::string& key, std::string* value));
33 MOCK_METHOD2(SetString, bool(const std::string& key,
34 const std::string& value));
35 MOCK_CONST_METHOD2(GetInt64, bool(const std::string& key, int64_t* value));
36 MOCK_METHOD2(SetInt64, bool(const std::string& key, const int64_t value));
38 MOCK_CONST_METHOD2(GetBoolean, bool(const std::string& key, bool* value));
39 MOCK_METHOD2(SetBoolean, bool(const std::string& key, const bool value));
41 MOCK_CONST_METHOD1(Exists, bool(const std::string
[all...]
H A Daction_pipe_unittest.cc20 #include <string>
23 using std::string;
34 typedef string OutputObjectType;
35 typedef string InputObjectType;
41 typedef string InputObjectType;
42 typedef string OutputObjectType;
43 ActionPipe<string>* in_pipe() { return in_pipe_.get(); }
44 ActionPipe<string>* out_pipe() { return out_pipe_.get(); }
46 string Type() const { return "ActionPipeTestAction"; }
/system/connectivity/shill/
H A Dgeolocation_info.h21 #include <string>
37 void AddField(const std::string& key, const std::string& value);
38 const std::string& GetFieldValue(const std::string& key) const;
40 const std::map<std::string, std::string> properties() const {
50 std::map<std::string, std::string> properties_;
H A Dkey_value_store.h21 #include <string>
54 bool ContainsBool(const std::string& name) const;
55 bool ContainsByteArrays(const std::string& name) const;
56 bool ContainsInt(const std::string& name) const;
57 bool ContainsInt16(const std::string& name) const;
58 bool ContainsKeyValueStore(const std::string& name) const;
59 bool ContainsRpcIdentifier(const std::string& name) const;
60 bool ContainsRpcIdentifiers(const std::string& name) const;
61 bool ContainsString(const std::string& name) const;
62 bool ContainsStringmap(const std::string
[all...]
H A Dmock_dns_client.cc19 #include <string>
24 using std::string;
30 : DNSClient(IPAddress::kFamilyIPv4, "", vector<string>(), 0, nullptr,
/system/bt/service/common/bluetooth/util/
H A Datomic_string.h18 #include <string>
24 // A simple atomic container class for std::string.
27 AtomicString(const std::string& str);
30 std::string Get() const;
31 void Set(const std::string& str);
35 std::string str_;
H A Daddress_helper.h20 #include <string>
24 // Checks if the given string representing a Bluetooth device address (BD_ADDR)
30 bool IsAddressValid(const std::string& address);
32 // Populates a bt_bdaddr_t from a given string. Returns false if the data is
34 bool BdAddrFromString(const std::string& address, bt_bdaddr_t* out_addr);
/system/connectivity/apmanager/
H A Dshill_proxy_interface.h20 #include <string>
29 virtual bool ClaimInterface(const std::string& interface_name) = 0;
31 virtual bool ReleaseInterface(const std::string& interface_name) = 0;
34 virtual bool SetupApModeInterface(std::string* interface_name) = 0;
36 virtual bool SetupStationModeInterface(std::string* interface_name) = 0;
H A Dshill_stub_proxy.cc19 using std::string;
27 bool ShillStubProxy::ClaimInterface(const string& interface_name) {
31 bool ShillStubProxy::ReleaseInterface(const string& interface_name) {
/system/core/base/include/android-base/
H A Dparsenetaddress.h20 #include <string>
32 bool ParseNetAddress(const std::string& address, std::string* host, int* port,
33 std::string* canonical_address, std::string* error);
/system/core/metricsd/uploader/
H A Dsender_http.h20 #include <string>
29 explicit HttpSender(std::string server_url);
33 bool Send(const std::string& content, const std::string& hash) override;
36 const std::string server_url_;
H A Dsender.h20 #include <string>
27 virtual bool Send(const std::string& content, const std::string& hash) = 0;
/system/vold/fs/
H A DF2fs.h22 #include <string>
30 status_t Check(const std::string& source);
31 status_t Mount(const std::string& source, const std::string& target);
32 status_t Format(const std::string& source);
/system/webservd/webservd/
H A Dencryptor.h19 #include <string>
30 virtual bool EncryptWithAuthentication(const std::string& plaintext,
31 std::string* ciphertext) = 0;
35 virtual bool DecryptWithAuthentication(const std::string& ciphertext,
36 std::string* plaintext) = 0;
H A Dfake_encryptor.h18 #include <string>
28 bool EncryptWithAuthentication(const std::string& plaintext,
29 std::string* ciphertext) override;
31 bool DecryptWithAuthentication(const std::string& ciphertext,
32 std::string* plaintext) override;
/system/connectivity/shill/test-rpc-proxy/
H A Dproxy_dbus_shill_wifi_client.h31 bool ConfigureServiceByGuid(const std::string& guid,
33 const std::string& passphrase) override;
34 bool ConfigureWifiService(const std::string& ssid,
35 const std::string& security,
40 const std::string& guid,
42 bool ConnectToWifiNetwork(const std::string& ssid,
43 const std::string& security,
48 const std::string& guid,
56 std::string* failure_reason) override;
57 bool DisconnectFromWifiNetwork(const std::string
[all...]
H A Dproxy_shill_wifi_client.h24 #include <string>
50 virtual bool ConfigureServiceByGuid(const std::string& guid,
52 const std::string& passphrase) = 0;
53 virtual bool ConfigureWifiService(const std::string& ssid,
54 const std::string& security,
59 const std::string& guid,
61 virtual bool ConnectToWifiNetwork(const std::string& ssid,
62 const std::string& security,
67 const std::string& guid,
75 std::string* failure_reaso
[all...]
/system/vold/
H A DUtils.h25 #include <string>
46 status_t CreateDeviceNode(const std::string& path, dev_t dev);
47 status_t DestroyDeviceNode(const std::string& path);
50 status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid);
53 status_t ForceUnmount(const std::string& path);
56 status_t KillProcessesUsingPath(const std::string& path);
59 status_t BindMount(const std::string& source, const std::string& target);
62 status_t ReadMetadata(const std::string& path, std::string
[all...]
/system/connectivity/shill/dhcp/
H A Ddhcp_proxy_interface.h20 #include <string>
30 virtual void Rebind(const std::string& interface) = 0;
31 virtual void Release(const std::string& interface) = 0;
/system/core/fastboot/
H A Dfs.h4 #include <string>
9 const struct fs_generator* fs_get_generator(const std::string& fs_type);
11 const std::string& initial_dir);

Completed in 554 milliseconds

1234567891011>>