| /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/compiler/ruby/ |
| ruby_generator.h | 34 #include <string> 47 const string& parameter, 49 string* error) const;
|
| /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/cpp/ |
| cpp_generator.h | 40 #include <string> 59 const string& parameter, 61 string* error) const;
|
| /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/compiler/java/ |
| java_generator.h | 40 #include <string> 59 const string& parameter, 61 string* error) const;
|
| /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/ |
| generated_message_util.h | 41 #include <string> 63 LIBPROTOBUF_EXPORT extern const ::std::string kEmptyString; 71 LIBPROTOBUF_EXPORT int StringSpaceUsedExcludingSelf(const string& str);
|
| /system/bt/vendor_libs/test_vendor_lib/include/ |
| broken_adv.h | 33 virtual void Initialize(const std::vector<std::string>& args) override; 35 // Return a string representation of the type of device. 36 virtual std::string GetTypeString() const override { return "broken_adv"; } 38 // Return the string representation of the device. 39 virtual std::string ToString() const override;
|
| /system/chre/platform/linux/include/chre/target_platform/ |
| platform_nanoapp_base.h | 21 #include <string> 40 * nanoapp. This string is not deep-copied, so the memory must remain 43 void loadFromFile(const std::string& filename); 71 //! loadFromFile), this will be set to the filename string to pass to dlopen() 72 std::string mFilename;
|
| /system/core/base/include/android-base/ |
| properties.h | 28 #include <string> 35 std::string GetProperty(const std::string& key, const std::string& default_value); 39 bool GetBoolProperty(const std::string& key, bool default_value); 44 template <typename T> T GetIntProperty(const std::string& key, 52 template <typename T> T GetUintProperty(const std::string& key, 60 bool SetProperty(const std::string& key, const std::string& value); 65 bool WaitForProperty(const std::string& key, const std::string& expected_value [all...] |
| /system/core/debuggerd/libdebuggerd/include/libdebuggerd/ |
| types.h | 20 #include <string> 27 std::string thread_name; 30 std::string process_name;
|
| /system/core/fastboot/ |
| fs.h | 4 #include <string> 9 const struct fs_generator* fs_get_generator(const std::string& fs_type); 11 const std::string& initial_dir, unsigned eraseBlkSize = 0, unsigned logicalBlkSize = 0);
|
| /system/core/init/ |
| subcontext.h | 22 #include <string> 34 extern const std::string kInitContext; 35 extern const std::string kVendorContext; 40 Subcontext(std::string path_prefix, std::string context) 45 Result<Success> Execute(const std::vector<std::string>& args); 46 Result<std::vector<std::string>> ExpandArgs(const std::vector<std::string>& args); 49 const std::string& path_prefix() const { return path_prefix_; } 50 const std::string& context() const { return context_; [all...] |
| subcontext.proto | 21 message ExecuteCommand { repeated string args = 1; } 22 message ExpandArgsCommand { repeated string args = 1; } 31 optional string error_string = 1; 34 message ExpandArgsReply { repeated string expanded_args = 1; } 43 optional string name = 1; 44 optional string value = 2;
|
| /system/core/logcat/ |
| logcat_system.cpp | 20 #include <string.h> 23 #include <string> 28 static std::string unquote(const char*& cp, const char*& delim) { 35 std::string str(cp, delim); 41 return std::string(cp, delim); 45 std::vector<std::string>& args, 46 std::vector<std::string>& envs) { 53 std::string str(env, ++cp); 72 std::vector<std::string> args; 73 std::vector<std::string> envs [all...] |
| /system/extras/libperfmgr/include/perfmgr/ |
| HintManager.h | 21 #include <string> 36 const std::map<std::string, std::vector<NodeAction>>& actions) 48 bool DoHint(const std::string& hint_type); 53 bool DoHint(const std::string& hint_type, 58 bool EndHint(const std::string& hint_type); 62 const std::string& config_path); 65 std::vector<std::string> GetHints() const; 72 const std::string& json_doc); 73 static std::map<std::string, std::vector<NodeAction>> ParseActions( 74 const std::string& json_doc [all...] |
| /system/extras/perfprofd/ |
| symbolizer.h | 27 virtual std::string Decode(const std::string& dso, uint64_t address) = 0; 28 virtual bool GetMinExecutableVAddr(const std::string& dso, uint64_t* addr) = 0;
|
| /system/libvintf/include/vintf/ |
| MatrixHal.h | 22 #include <string> 42 std::string name; 45 std::map<std::string, HalInterface> interfaces; 47 inline const std::string& getName() const { return name; } 54 friend std::string expandInstances(const MatrixHal& req, const VersionRange& vr, bool brace); 55 friend std::vector<std::string> expandInstances(const MatrixHal& req); 62 const std::function<bool(const std::vector<VersionRange>&, const std::string&, 63 const std::string& instanceOrPattern, bool isRegex)>& func) const; 74 void insertInstance(const std::string& interface, const std::string& instance, bool isRegex) [all...] |
| /system/netd/server/ |
| StrictControllerTest.cpp | 19 #include <string> 40 std::vector<std::string> common = { 50 std::vector<std::string> v4 = { 74 std::vector<std::string> v6 = { 99 std::string commandsCommon = android::base::Join(common, '\n'); 100 std::string commands4 = android::base::Join(v4, '\n'); 101 std::string commands6 = android::base::Join(v6, '\n'); 103 std::vector<std::pair<IptablesTarget, std::string>> expected = { 114 const std::string expected = 126 std::vector<std::string> acceptCommands = [all...] |
| /system/tools/aidl/ |
| code_writer.h | 21 #include <string> 32 // Write a formatted string to this writer in the usual printf sense. 42 CodeWriterPtr GetFileWriter(const std::string& output_file); 44 // Get a CodeWriter that writes to a string buffer. 47 CodeWriterPtr GetStringWriter(std::string* output_buffer);
|
| /system/tpm/tpm_manager/server/ |
| tpm_connection.h | 20 #include <string> 32 explicit TpmConnection(const std::string& authorization_value); 48 std::string authorization_value_;
|
| /system/tpm/trunks/ |
| tpm_utility_impl.h | 23 #include <string> 47 TPM_RC AllocatePCR(const std::string& platform_password) override; 48 TPM_RC TakeOwnership(const std::string& owner_password, 49 const std::string& endorsement_password, 50 const std::string& lockout_password) override; 51 TPM_RC StirRandom(const std::string& entropy_data, 55 std::string* random_data) override; 57 const std::string& extend_data, 59 TPM_RC ReadPCR(int pcr_index, std::string* pcr_value) override; 63 const std::string& plaintext [all...] |
| /system/update_engine/client_library/include/update_engine/ |
| status_update_handler.h | 20 #include <string> 35 virtual void IPCError(const std::string& error) = 0; 41 const std::string& new_version,
|
| /system/update_engine/ |
| connection_utils.h | 20 #include <string> 42 ConnectionType ParseConnectionType(const std::string& type_str); 43 ConnectionTethering ParseConnectionTethering(const std::string& tethering_str); 45 // Returns the string representation corresponding to the given connection type.
|
| /system/update_engine/update_manager/ |
| api_restricted_downloads_policy_impl.h | 20 #include <string> 36 std::string* error, 41 std::string PolicyName() const override {
|
| enough_slots_ab_updates_policy_impl.h | 20 #include <string> 35 std::string* error, 39 std::string PolicyName() const override {
|
| enterprise_device_policy_impl.h | 20 #include <string> 33 std::string PolicyName() const override { 39 std::string* error,
|
| interactive_update_policy_impl.h | 20 #include <string> 35 std::string* error, 39 std::string PolicyName() const override {
|