| /system/core/init/ |
| init.h | 22 #include <string> 36 extern std::string default_console; 37 extern std::vector<std::string> late_import_paths; 41 void HandleControlMessage(const std::string& msg, const std::string& arg, pid_t pid); 43 void property_changed(const std::string& name, const std::string& value);
|
| /system/extras/libperfmgr/include/perfmgr/ |
| RequestGroup.h | 22 #include <string> 38 RequestGroup(std::string request_value) 47 std::string GetRequestValue() const; 50 bool AddRequest(const std::string& hint_type, ReqTime end_time); 54 bool RemoveRequest(const std::string& hint_type); 57 const std::string request_value_; 58 std::map<std::string, ReqTime> request_map_;
|
| /system/libhidl/transport/manager/1.0/ |
| IServiceManager.hal | 52 get(string fqName, string name) generates (interface service); 74 add(string name, interface service) generates (bool success); 90 getTransport(string fqName, string name) generates (Transport transport); 97 list() generates (vec<string> fqInstanceNames); 106 listByInterface(string fqName) generates (vec<string> instanceNames); 126 registerForNotifications(string fqName, 127 string name [all...] |
| /system/netd/server/ |
| Network.h | 23 #include <string> 46 bool hasInterface(const std::string& interface) const; 47 const std::set<std::string>& getInterfaces() const; 50 virtual int addInterface(const std::string& interface) WARN_UNUSED_RESULT = 0; 51 virtual int removeInterface(const std::string& interface) WARN_UNUSED_RESULT = 0; 54 std::string toString() const; 60 std::set<std::string> mInterfaces;
|
| /system/tools/hidl/ |
| NamedType.h | 26 #include <string> 37 std::string localName() const; 40 std::string fullName() const; 42 std::string fullJavaName() const; 48 const std::string &streamName, 49 const std::string &name) const override; 52 const std::string mLocalName;
|
| /system/vold/model/ |
| ObbVolume.h | 32 ObbVolume(int id, const std::string& sourcePath, const std::string& sourceKey, 43 std::string mSourcePath; 44 std::string mSourceKey; 47 std::string mLoopPath; 48 std::string mDmPath; 49 std::string mMountPath;
|
| /test/vts/drivers/hal/common/utils/ |
| StringUtil.cpp | 19 #include <string> 26 bool endsWith(const string& s, const string& suffix) { 30 void ReplaceSubString(string& original, const string& from, const string& to) { 35 if (index == std::string::npos) break;
|
| /test/vts/drivers/shell/ |
| ShellDriver.h | 20 #include <string> 30 string stdout; 31 string stderr; 56 string socket_address_; 62 int ExecShellCommand(const string& command, 74 CommandResult* ExecShellCommandPopen(const string& command); 79 CommandResult* ExecShellCommandNohup(const string& command);
|
| /toolchain/binutils/binutils-2.27/gold/ |
| dirsearch.h | 26 #include <string> 54 // or the empty string if it could not be found. This may only be 61 std::string 62 find(const std::vector<std::string>& names, bool* is_in_sysroot, 63 int* pindex, std::string *found_name) const; 72 static std::string 73 find_file_in_dir_list(const std::string& name, 75 const std::string& extra_search_dir);
|
| /external/webrtc/webrtc/test/testsupport/ |
| perf_test.cc | 22 std::string ResultsToString(const std::string& measurement, 23 const std::string& modifier, 24 const std::string& trace, 25 const std::string& values, 26 const std::string& prefix, 27 const std::string& suffix, 28 const std::string& units, 46 void PrintResultsImpl(const std::string& measurement, 47 const std::string& modifier [all...] |
| /device/google/cuttlefish_common/common/libs/net/ |
| network_interface.h | 19 #include <string> 39 NetworkInterface& SetName(const std::string& new_name) { 46 const std::string& Name() const { 68 NetworkInterface& SetAddress(const std::string& address) { 74 const std::string& Address() const { 79 NetworkInterface& SetBroadcastAddress(const std::string& address) { 91 const std::string& BroadcastAddress() const { 100 std::string name_; 104 std::string ip_address_; 106 std::string bc_address_ [all...] |
| /external/ImageMagick/Magick++/lib/Magick++/ |
| CoderInfo.h | 15 #include <string> 36 CoderInfo(const std::string &name_); 51 std::string description(void) const; 63 std::string mimeType(void) const; 66 std::string module(void) const; 69 std::string name(void) const; 76 std::string _description; 81 std::string _mimeType; 82 std::string _module; 83 std::string _name [all...] |
| /external/libchrome/base/metrics/ |
| field_trial_param_associator.h | 9 #include <string> 27 typedef std::map<std::string, std::string> FieldTrialParams; 33 bool AssociateFieldTrialParams(const std::string& trial_name, 34 const std::string& group_name, 39 bool GetFieldTrialParams(const std::string& trial_name, 46 bool GetFieldTrialParamsWithoutFallback(const std::string& trial_name, 47 const std::string& group_name, 61 typedef std::pair<std::string, std::string> FieldTrialKey [all...] |
| /external/parameter-framework/upstream/parameter/ |
| RuleParser.h | 32 #include <string> 53 CRuleParser(const std::string &strApplicationRule, 58 bool parse(CCompoundRule *pParentRule, std::string &strError); 61 bool iterate(std::string &strError); 64 bool next(std::string &strNext, std::string &strError); 67 const std::string &getType() const; 80 std::string _strApplicationRule; 83 /** String iterator */ 84 std::string::size_type _uiCurrentPos{0} [all...] |
| /external/syslinux/com32/lib/ |
| strreplace.c | 29 #include <string.h> 32 char *strreplace(const char *string, const char *string_to_replace, 40 token = strstr(string, string_to_replace); 42 return strdup(string); 44 slen = strlen(string); 52 memcpy(out, string, token - string); 53 memcpy(out + (token - string), string_to_insert, silen); 54 memcpy(out + (token - string) + silen, token + srlen, 55 slen - srlen - (token - string) + 1) [all...] |
| /external/tensorflow/tensorflow/compiler/xla/service/ |
| hlo_graph_dumper.h | 19 #include <string> 42 virtual string RenderGraph(const string& graph, GraphKind graph_kind, 49 // returned; otherwise an empty string is returned. 50 string MaybeDumpHloModule(const HloModule& module, const string& label, 56 string DumpGraph(const HloComputation& computation, const string& label, 66 string DumpNeighborhoodAround(const HloInstruction& node, int radius, 75 void DumpText(const HloModule& module, const string& label [all...] |
| /external/tensorflow/tensorflow/contrib/ffmpeg/ |
| ffmpeg_lib.h | 19 #include <string> 30 explicit FileDeleter(const string& filename) : filename_(filename) {} 34 const string filename_; 38 Status WriteFile(const string& filename, tensorflow::StringPiece contents); 43 Status ReadAudioFile(const string& filename, const string& audio_format_id, 45 const string& stream, std::vector<float>* output_samples); 52 Status CreateAudioFile(const string& audio_format_id, int32 bits_per_second, 54 const std::vector<float>& samples, string* output_data); 58 Status ReadVideoFile(const string& filename, std::vector<uint8>* output_data [all...] |
| /external/tensorflow/tensorflow/core/kernels/ |
| spectrogram_test_utils.h | 20 #include <string> 29 bool ReadWaveFileToVector(const string& file_name, std::vector<double>* data); 35 const string& file_name, int row_length, 40 const string& file_name, 45 void ReadCSVFileToArrayOrDie(const string& filename, 50 bool WriteDoubleVectorToFile(const string& file_name, 55 bool WriteFloatVectorToFile(const string& file_name, 60 bool WriteDoubleArrayToFile(const string& file_name, int size, 65 bool WriteFloatArrayToFile(const string& file_name, int size, 71 const string& file_name [all...] |
| /external/tensorflow/tensorflow/core/lib/monitoring/ |
| collected_metrics.h | 25 #include <string> 60 string name; 63 string description; 67 std::vector<string> label_names; 82 string name; 83 string value; 90 string string_value; 138 string metric_name; 147 std::map<string, std::unique_ptr<MetricDescriptor>> metric_descriptor_map; 148 std::map<string, std::unique_ptr<PointSet>> point_set_map [all...] |
| /external/tensorflow/tensorflow/core/platform/ |
| tensor_coding.h | 20 #include <string> 37 void AssignRefCounted(StringPiece src, core::RefCounted* obj, string* out); 40 inline void CopyToArray(const string& src, char* dst) { 45 void EncodeStringList(const string* strings, int64 n, string* out); 49 bool DecodeStringList(const string& src, string* strings, int64 n); 52 void CopyFromArray(string* s, const char* base, size_t bytes); 54 // Encodes a list of ResourceHandle protos in the given string. 56 string* out) [all...] |
| /external/webrtc/webrtc/base/ |
| linux.h | 15 #include <string> 33 // std::string val1 = key_val_pairs[section_num][key1]; 34 // std::string val2 = key_val_pairs[section_num][key2]; 41 typedef std::map<std::string, std::string> SimpleMap; 47 virtual bool Open(const std::string& filename); 51 virtual bool ParseLine(std::string* key, std::string* value); 65 // std::string out_str; 94 // number and places the string value in result [all...] |
| /external/webrtc/webrtc/libjingle/xmpp/ |
| prexmppauth.h | 30 CaptchaChallenge(const std::string& token, const std::string& url) 35 const std::string& captcha_token() const { return captcha_token_; } 39 const std::string& captcha_image_url() const { return captcha_image_url_; } 43 std::string captcha_token_; 44 std::string captcha_image_url_; 55 const std::string& auth_mechanism, 56 const std::string& auth_token) = 0; 65 virtual std::string GetAuthMechanism() const = 0; 66 virtual std::string GetAuthToken() const = 0 [all...] |
| /frameworks/native/libs/ui/include/ui/ |
| DebugUtils.h | 22 #include <string> 28 std::string decodeStandard(android_dataspace dataspace); 29 std::string decodeTransfer(android_dataspace dataspace); 30 std::string decodeRange(android_dataspace dataspace); 31 std::string dataspaceDetails(android_dataspace dataspace); 32 std::string decodeColorMode(android::ui::ColorMode colormode); 33 std::string decodeColorTransform(android_color_transform colorTransform); 34 std::string decodePixelFormat(android::PixelFormat format); 35 std::string decodeRenderIntent(android::ui::RenderIntent renderIntent); 36 std::string to_string(const android::Rect& rect) [all...] |
| /hardware/nxp/secure_element/libese-spi/p73/utils/ |
| ese_config.h | 21 #include <string> 41 static bool hasKey(const std::string& key); 42 static std::string getString(const std::string& key); 43 static std::string getString(const std::string& key, 44 std::string default_value); 45 static unsigned getUnsigned(const std::string& key); 46 static unsigned getUnsigned(const std::string& key, unsigned default_value); 47 static std::vector<uint8_t> getBytes(const std::string& key) [all...] |
| /packages/apps/Car/LocalMediaPlayer/proto/ |
| proto.proto | 26 optional string name = 3; 31 optional string media_id = 1; 33 optional string title = 3; 34 optional string subtitle = 4; 35 optional string path = 5;
|