Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 231) sorted by relevance

12345678910

/tools/acloud/internal/proto/
Duser_config.proto22 optional string service_account_name = 1;
23 optional string service_account_private_key_path = 2;
26 optional string project = 3;
28 optional string zone = 4;
29 optional string machine_type = 5;
31 optional string network = 6;
34 optional string ssh_private_key_path = 7;
35 optional string ssh_public_key_path = 8;
38 optional string storage_bucket_name = 9;
41 optional string orientation = 10;
[all …]
Dinternal_config.proto22 optional string machine_type = 1;
23 optional string network = 2;
28 map <string, string> metadata_variable = 4;
30 optional string stable_host_image_name = 5;
32 optional string stable_host_image_project = 6;
34 optional string stable_goldfish_host_image_name = 7;
36 optional string stable_goldfish_host_image_project = 8;
38 optional string stable_cheeps_host_image_name = 9;
40 optional string stable_cheeps_host_image_project = 10;
44 optional string instance_name_pattern = 11;
[all …]
/tools/tradefederation/core/atest_proto/
Dinternal_user_log.proto15 optional string command_line = 1;
16 repeated string test_references = 2;
17 optional string cwd = 3;
18 optional string os = 4;
25 optional string stacktrace = 3;
26 optional string logs = 4;
34 optional string test_reference = 3;
35 repeated string test_finders = 4;
36 optional string test_info = 5;
43 repeated string targets = 3;
[all …]
/tools/asuite/atest/proto/
Dinternal_user_log.proto15 optional string command_line = 1;
16 repeated string test_references = 2;
17 optional string cwd = 3;
18 optional string os = 4;
25 optional string stacktrace = 3;
26 optional string logs = 4;
34 optional string test_reference = 3;
35 repeated string test_finders = 4;
36 optional string test_info = 5;
43 repeated string targets = 3;
[all …]
/tools/asuite/adevice/src/protos/
Duser_log.proto15 optional string command_line = 1;
16 repeated string test_references = 2;
17 optional string cwd = 3;
18 optional string os = 4;
19 optional string target = 5;
20 optional string source_root = 6;
26 optional string stacktrace = 3;
27 optional string logs = 4;
31 optional string action = 1;
32 optional string outcome = 2;
[all …]
/tools/test/openhst/
Dstress_test.proto26 string source = 1;
28 string name = 2;
30 repeated string regex = 3;
42 // The regex to extract the string containing the timestamp.
43 string regex = 4;
44 // The format string to pass to the python datetime constructor for the
46 string date_format = 5;
54 string source = 1;
57 string destination = 2;
67 string command = 1;
[all …]
/tools/netsim/proto/netsim/
Dconfig.proto27 string vnet = 4;
28 string vhost = 5;
29 string vmask = 6;
33 string vprefix6 = 8;
35 string vhost6 = 10;
36 string vhostname = 11;
37 string tftpath = 12;
38 string bootfile = 13;
39 string dhcpstart = 14;
40 string dns = 15;
[all …]
/tools/netsim/src/util/
Dstring_utils.cc27 const std::string WHITESPACE = " \n\r\t\f\v";
34 return (start == std::string::npos) ? "" : s.substr(start); in LTrim()
39 return (end == std::string::npos) ? "" : s.substr(0, end + 1); in RTrim()
48 while ((start = s.find_first_not_of(delimiters, end)) != std::string::npos) { in Split()
55 std::vector<std::string> Split(const std::string s, in Split()
56 const std::string &delimiters) { in Split()
57 std::vector<std::string> result; in Split()
59 while ((start = s.find_first_not_of(delimiters, end)) != std::string::npos) { in Split()
66 std::string ToHexString(uint8_t x, uint8_t y) { in ToHexString()
75 std::string ToHexString(uint8_t x) { in ToHexString()
[all …]
Dini_file.h32 explicit IniFile(std::string filepath = "") : filepath(std::move(filepath)) {} in filepath()
42 bool HasKey(const std::string &key) const;
45 std::optional<std::string> Get(const std::string &key) const;
48 void Set(const std::string &key, std::string_view value);
51 std::unordered_map<std::string, std::string> data;
52 std::string filepath;
Dstring_utils.h28 std::string ToHexString(uint8_t x, uint8_t y);
29 std::string ToHexString(uint8_t x);
30 std::string ToHexString(const uint8_t *, size_t);
31 std::string ToHexString(const std::vector<uint8_t> &data, int max_length);
38 std::vector<std::string> Split(const std::string, const std::string &);
39 inline std::string AsString(std::string_view v) { return {v.data(), v.size()}; } in AsString()
/tools/external_updater/
Dmetadata.proto28 optional string name = 1;
29 optional string description = 3;
51 optional string version = 2;
53 optional string license_note = 5;
54 optional string local_modifications = 6;
58 optional string homepage = 14;
77 optional string value = 2;
81 optional string type = 1;
82 optional string value = 3;
83 optional string version = 4;
[all …]
/tools/tradefederation/core/isolation/
Disolation_runner.proto47 repeated string testClasses = 1;
48 repeated string testJarAbsPaths = 2;
49 repeated string excludePaths = 3;
55 repeated string includeFilters = 1;
56 repeated string excludeFilters = 2;
57 repeated string includeAnnotations = 3;
58 repeated string excludeAnnotations = 4;
76 string message = 2;
77 string method_name = 3;
78 string class_name = 4;
[all …]
/tools/security/fuzzing/llm/xmlreader_fuzzer/
DXmlRead_Memory_Fuzzer.cpp6 std::string GenerateRandomXML(FuzzedDataProvider& stream) { in GenerateRandomXML()
7 std::string xml = "<root>"; in GenerateRandomXML()
11 … std::string elementName = stream.ConsumeRandomLengthString(10); // Limiting name length to 10 in GenerateRandomXML()
15 … std::string textContent = stream.ConsumeRandomLengthString(20); // Limiting text content length in GenerateRandomXML()
21 …std::string attributeName = stream.ConsumeRandomLengthString(10); // Limiting attribute name length in GenerateRandomXML()
22 …std::string attributeValue = stream.ConsumeRandomLengthString(20); // Limiting attribute value len… in GenerateRandomXML()
47 std::string buffer = GenerateRandomXML(stream); in LLVMFuzzerTestOneInput()
49 std::string URL = stream.ConsumeRandomLengthString(); in LLVMFuzzerTestOneInput()
50 std::string encoding = stream.ConsumeRandomLengthString(); in LLVMFuzzerTestOneInput()
/tools/test/graphicsbenchmark/functional_tests/native/
DglExtensions_test.cpp92 std::vector<std::string> neededExts {"GL_EXT_color_buffer_half_float", in TEST()
97 std::string extString(reinterpret_cast<const char*>(glGetString(GL_EXTENSIONS))); in TEST()
101 std::vector<std::string> availableExts(std::istream_iterator<std::string>{iss}, in TEST()
102 std::istream_iterator<std::string>()); in TEST()
121 std::vector<std::string> neededExts {"EGL_ANDROID_get_frame_timestamps", in TEST()
127 std::string extString(eglQueryString(eglDisp, EGL_EXTENSIONS)); in TEST()
131 std::vector<std::string> availableExts(std::istream_iterator<std::string>{iss}, in TEST()
132 std::istream_iterator<std::string>()); in TEST()
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/power/loggers/protos/
Dpower_metric.proto20 optional string testbed = 2; // Required
22 optional string branch = 4;
23 optional string build_id = 5;
24 optional string target = 6;
27 optional string test_suite_display_name = 9;
28 optional string test_case_display_name = 10;
29 optional string incremental_build_id = 11;
31 optional string pass_fail_status = 13;
/tools/carrier_settings/proto/
Dcarrier_settings.proto27 optional string canonical_name = 1;
57 optional string name = 1;
60 optional string value = 2;
89 optional string bearer_bitmask = 4 [default = "0"];
93 optional string server = 5;
94 optional string proxy = 6;
95 optional string port = 7;
96 optional string user = 8;
97 optional string password = 9;
101 optional string mmsc = 11;
[all …]
/tools/tradefederation/core/proto/
Dtest_record.proto31 string test_record_id = 1;
34 string parent_test_record_id = 2;
57 map<string, google.protobuf.Any> artifacts = 9;
60 map<string, tradefed.metric.Metric> metrics = 10;
77 string test_record_id = 1;
96 string reason = 1;
99 string trigger = 2;
105 string error_message = 1;
108 string trace = 2;
147 string action_in_progress = 1;
[all …]
Dbuild_info.proto26 string version = 1;
28 string local_path = 2;
35 string build_file_key = 1;
43 string build_id = 1;
45 string build_flavor = 2;
47 string branch = 3;
49 map<string, string> attributes = 4;
54 string build_info_class = 6;
/tools/asuite/atest/tf_proto/
Dbuild_info.proto26 string version = 1;
28 string local_path = 2;
35 string build_file_key = 1;
43 string build_id = 1;
45 string build_flavor = 2;
47 string branch = 3;
49 map<string, string> attributes = 4;
54 string build_info_class = 6;
Dtest_record.proto31 string test_record_id = 1;
34 string parent_test_record_id = 2;
57 map<string, google.protobuf.Any> artifacts = 9;
60 map<string, tradefed.metric.Metric> metrics = 10;
74 string test_record_id = 1;
93 string error_message = 1;
96 string trace = 2;
135 string action_in_progress = 1;
138 string debug_help_message = 10;
141 string error_type = 20;
[all …]
/tools/asuite/atest/bazel/runner/src/main/protobuf/
Dbuild_event_stream.proto41 string details = 1;
67 string command_line_label = 1;
81 string url = 1;
91 repeated string pattern = 1;
101 string label = 1;
115 string aspect = 2;
121 // Identifier of the file set; this is an opaque string valid only for the
123 string id = 1;
131 string id = 1;
137 string label = 1;
[all …]
/tools/security/fuzzing/llm/tinyxml2_fuzzer/
Dtinyxml_parse_fuzzer.cpp7 std::string name;
8 std::vector<std::pair<std::string, std::string>> attributes;
10 std::string textContent;
13 std::string serializeXML(const XMLElement& element) { in serializeXML()
14 std::string xml = "<" + element.name; in serializeXML()
69 std::string xmlString = serializeXML(rootElement); in LLVMFuzzerTestOneInput()
/tools/tradefederation/core/proto/feature/
Dtradefed_service.proto34 string name = 1;
36 map<string, string> args = 2;
38 string reference_id = 3;
45 string response = 1;
60 string key = 1;
62 string value = 2;
67 string error_trace = 1;
/tools/netsim/src/frontend/
Dfrontend_server.cc47 const std::string &response) const override { in put_error()
52 void put_ok_with_length(const std::string &mime_type, in put_ok_with_length()
60 response.set_capture_stream(std::string(chunk.begin(), chunk.end())); in put_chunk()
64 void put_ok(const std::string &mime_type, in put_ok()
65 const std::string &body) const override { in put_ok()
72 mutable std::string err;
74 mutable std::string body;
83 reply->set_version(std::string(netsim::GetVersion())); in GetVersion()
103 std::string request_json; in CreateDevice()
117 std::string request_json; in DeleteChip()
[all …]
/tools/test/connectivity/acts/framework/acts/libs/testtracker/protos/
Dtesttracker_result.proto16 // The default should be a string.
18 optional string name = 1;
22 string string_value = 101;
27 // The json_value is a special case of string - this just signals the caller
29 string json_value = 104;
62 optional string name = 1;
63 optional string uuid = 2; // uuid
64 optional string description = 3; // Text blob about the result.
65 optional string detail = 4; // Detailed text about the result.
71 optional string timestamp = 10;

12345678910