| /system/libvintf/include/vintf/ |
| XmlSchemaFormat.h | 21 #include <string> 31 static const std::array<std::string, 2> gXmlSchemaFormatStrings = {{
|
| /system/security/keystore/ |
| key_config.proto | 26 optional string algorithm = 1; 32 optional string origin = 3; 35 optional string user_auth_type = 4; 43 repeated string padding = 6; 46 repeated string digest = 7; 49 repeated string block_mode = 8; 55 repeated string purpose = 10; 58 optional string ec_curve = 11; 61 optional string key_blob_usage_reqs = 12;
|
| operation_config.proto | 25 optional string algorithm = 1; 32 optional string origin = 3; 35 optional string user_auth_type = 4; 43 optional string padding = 6; 46 optional string digest = 7; 49 optional string block_mode = 8; 56 optional string purpose = 10; 59 optional string ec_curve = 11; 62 optional string key_blob_usage_reqs = 12;
|
| /system/tpm/attestation/server/ |
| mock_key_store.h | 22 #include <string> 35 bool(const std::string& username, 36 const std::string& name, 37 std::string* key_data)); 39 bool(const std::string& username, 40 const std::string& name, 41 const std::string& key_data)); 43 bool(const std::string& username, const std::string& name)); 45 bool(const std::string& username [all...] |
| /system/tpm/trunks/ |
| password_authorization_delegate.h | 20 #include <string> 38 explicit PasswordAuthorizationDelegate(const std::string& password); 41 bool GetCommandAuthorization(const std::string& command_hash, 44 std::string* authorization) override; 45 bool CheckResponseAuthorization(const std::string& response_hash, 46 const std::string& authorization) override; 47 bool EncryptCommandParameter(std::string* parameter) override; 48 bool DecryptResponseParameter(std::string* parameter) override;
|
| hmac_authorization_delegate.h | 20 #include <string> 67 bool GetCommandAuthorization(const std::string& command_hash, 70 std::string* authorization) override; 71 bool CheckResponseAuthorization(const std::string& response_hash, 72 const std::string& authorization) override; 73 bool EncryptCommandParameter(std::string* parameter) override; 74 bool DecryptResponseParameter(std::string* parameter) override; 86 const std::string& salt, 87 const std::string& bind_auth_value, 92 void set_future_authorization_value(const std::string& auth_value) [all...] |
| /system/vold/ |
| KeyUtil.h | 23 #include <string> 30 bool installKey(const KeyBuffer& key, std::string* raw_ref); 31 bool evictKey(const std::string& raw_ref); 33 const std::string& key_path, const std::string& tmp_path, 34 std::string* key_ref); 35 bool retrieveKey(bool create_if_absent, const std::string& key_path, 36 const std::string& tmp_path, KeyBuffer* key);
|
| /system/vold/fs/ |
| Ext4.h | 22 #include <string> 30 status_t Check(const std::string& source, const std::string& target); 31 status_t Mount(const std::string& source, const std::string& target, bool ro, 33 status_t Format(const std::string& source, unsigned long numSectors, 34 const std::string& target); 35 status_t Resize(const std::string& source, unsigned long numSectors);
|
| /system/vold/model/ |
| EmulatedVolume.h | 40 explicit EmulatedVolume(const std::string& rawPath); 41 EmulatedVolume(const std::string& rawPath, dev_t device, const std::string& fsUuid); 49 std::string mRawPath; 50 std::string mLabel; 52 std::string mFuseDefault; 53 std::string mFuseRead; 54 std::string mFuseWrite;
|
| /toolchain/binutils/binutils-2.27/ld/testsuite/ld-ia64/ |
| merge5.s | 2 .LC1: .string "foo" 3 .LC2: .string "foo" 4 .LC3: .string "bar" 5 .LC4: .string "bar" 6 .LC5: .string "bar" 7 .LC6: .string "bar" 8 .LC7: .string "baz" 9 .LC8: .string "baz" 16 .LC9: .string "mumble"
|
| /toolchain/binutils/binutils-2.27/libiberty/ |
| putenv.c | 21 @deftypefn Supplemental int putenv (const char *@var{string}) 23 Uses @code{setenv} or @code{unsetenv} to put @var{string} into 24 the environment or remove it. If @var{string} is of the form 25 @samp{name=value} the string is added; if no @samp{=} is present the 48 # include <string.h> 68 /* Put STRING, which is of the form "NAME=VALUE", in the environment. */ 70 putenv (const char *string) 72 const char *const name_end = strchr (string, '='); 76 char *name = (char *) alloca (name_end - string + 1); 77 memcpy (name, string, name_end - string) [all...] |
| /system/core/init/ |
| descriptors.h | 23 #include <string> 30 DescriptorInfo(const std::string& name, const std::string& type, uid_t uid, 31 gid_t gid, int perm, const std::string& context); 37 void CreateAndPublish(const std::string& globalContext) const; 41 const std::string& name() const { return name_; } 42 const std::string& type() const { return type_; } 46 const std::string& context() const { return context_; } 49 std::string name_; 50 std::string type_ [all...] |
| /external/libbrillo/brillo/strings/ |
| string_utils.h | 8 #include <string> 17 // Treats the string as a delimited list of substrings and returns the array 21 // string should be omitted. 22 BRILLO_EXPORT std::vector<std::string> Split(const std::string& str, 23 const std::string& delimiter, 26 // Splits the string, trims all whitespaces, omits empty string parts. 27 inline std::vector<std::string> Split(const std::string& str [all...] |
| /external/protobuf/src/google/protobuf/io/ |
| printer.h | 40 #include <string> 57 const string& file_path, 76 const string& file_path, const vector<int>& path) { 97 // map<string, string> vars; 110 // identifies Bob, we can associate the output string "My name is Bob." with 136 // map<string, string> vars; 154 // map<string, string> vars [all...] |
| /external/tensorflow/tensorflow/core/debug/ |
| debug_io_utils.h | 22 #include <string> 37 Status ReadEventFromFile(const string& dump_file_path, Event* event); 40 DebugWatchAndURLSpec(const string& watch_key, const string& url, 44 const string watch_key; 45 const string url; 64 const int64 executor_step_index, const std::vector<string>& input_names, 65 const std::vector<string>& output_names, 66 const std::vector<string>& target_nodes, 67 const std::unordered_set<string>& debug_urls) [all...] |
| /frameworks/native/cmds/installd/ |
| utils.h | 21 #include <string> 49 std::string create_data_path(const char* volume_uuid); 51 std::string create_data_app_path(const char* volume_uuid); 52 std::string create_data_app_package_path(const char* volume_uuid, const char* package_name); 54 std::string create_data_user_ce_path(const char* volume_uuid, userid_t userid); 55 std::string create_data_user_de_path(const char* volume_uuid, userid_t userid); 57 std::string create_data_user_ce_package_path(const char* volume_uuid, 59 std::string create_data_user_ce_package_path(const char* volume_uuid, 61 std::string create_data_user_de_package_path(const char* volume_uuid, 63 std::string create_data_user_ce_package_path_as_user_link [all...] |
| /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/ |
| printer.h | 40 #include <string> 57 const string& file_path, 76 const string& file_path, const vector<int>& path) { 97 // map<string, string> vars; 110 // identifies Bob, we can associate the output string "My name is Bob." with 136 // map<string, string> vars; 154 // map<string, string> vars [all...] |
| /external/webrtc/webrtc/base/ |
| pathutils.h | 14 #include <string> 47 Pathname(const std::string& pathname); 48 Pathname(const std::string& folder, const std::string& filename); 64 std::string url() const; 67 // returns a string representing the current directory (as a relative path, 69 std::string pathname() const; 70 void SetPathname(const std::string& pathname); 71 void SetPathname(const std::string& folder, const std::string& filename) [all...] |
| /system/tpm/attestation/common/ |
| tpm_utility_v1.h | 22 #include <string> 42 bool ActivateIdentity(const std::string& delegate_blob, 43 const std::string& delegate_secret, 44 const std::string& identity_key_blob, 45 const std::string& asym_ca_contents, 46 const std::string& sym_ca_attestation, 47 std::string* credential) override; 50 const std::string& identity_key_blob, 51 const std::string& external_data, 52 std::string* key_blob [all...] |
| /device/google/wahoo/thermal/ |
| sensors.h | 20 #include <string> 42 std::string getSensorPath(const std::string& sensor_name); 45 const std::string& sensor_name, const std::string& path, 53 const std::string& sensor_name, std::string* data, 54 std::string* file_path) const; 56 const std::string& sensor_name, const float mult, 64 std::unordered_map<std::string, std::tuple [all...] |
| /external/e2fsprogs/lib/e2p/ |
| crypto_mode.c | 15 #include <string.h> 24 const char *string; member in struct:mode 40 for (p = mode_list; p->string; p++) { 42 return p->string; 51 int e2p_string2encmode(char *string) 57 for (p = mode_list; p->string; p++) { 58 if (!strcasecmp(string, p->string)) { 62 if (strncasecmp(string, "ENC_MODE_", 9)) 65 if (string[9] == 0 [all...] |
| hashstr.c | 15 #include <string.h> 23 const char *string; member in struct:hash 38 for (p = hash_list; p->string; p++) { 40 return p->string; 49 int e2p_string2hash(char *string) 55 for (p = hash_list; p->string; p++) { 56 if (!strcasecmp(string, p->string)) { 60 if (strncasecmp(string, "HASHALG_", 8)) 63 if (string[8] == 0 [all...] |
| /external/google-breakpad/src/common/linux/ |
| libcurl_wrapper.h | 36 #include <string> 48 virtual bool SetProxy(const string& proxy_host, 49 const string& proxy_userpwd); 50 virtual bool AddFile(const string& upload_file_path, 51 const string& basename); 52 virtual bool SendRequest(const string& url, 53 const std::map<string, string>& parameters, 55 string* http_header_data, 56 string* http_response_data) [all...] |
| /external/google-breakpad/src/processor/ |
| simple_symbol_supplier.h | 80 #include <string> 97 explicit SimpleSymbolSupplier(const string &path) : paths_(1, path) {} 101 explicit SimpleSymbolSupplier(const vector<string> &paths) : paths_(paths) {} 109 string *symbol_file); 113 string *symbol_file, 114 string *symbol_data); 120 string *symbol_file, 130 const string &root_path, 131 string *symbol_file); 134 map<string, char *> memory_buffers_ [all...] |
| /external/libtextclassifier/util/i18n/ |
| locale.h | 20 #include <string> 30 static Locale FromBCP47(const std::string& locale_tag); 39 std::string Language() const { return language_; } 41 std::string Script() const { return script_; } 43 std::string Region() const { return region_; } 48 Locale(const std::string& language, const std::string& script, 49 const std::string& region) 55 std::string language_; 56 std::string script_ [all...] |