HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 301 - 325 of 46739) sorted by null

<<11121314151617181920>>

  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/
JsonWebKey.h 34 bool extractKeysFromJsonWebKeySet(const std::string& jsonWebKeySet,
39 std::vector<std::string> mJsonObjects;
40 std::vector<std::string> mTokens;
42 bool decodeBase64String(const std::string& encodedText,
44 bool findKey(const std::string& jsonObject, std::string* keyId,
45 std::string* encodedKey);
46 void findValue(const std::string &key, std::string* value);
47 bool isJsonWebKeySet(const std::string& jsonObject) const
    [all...]
  /frameworks/base/core/proto/android/providers/settings/
common.proto 24 optional string id = 1;
27 optional string name = 2;
30 optional string pkg = 3;
33 optional string value = 4;
36 optional string default_value = 5;
47 optional string operation = 2;
50 optional string setting = 3;
  /test/vts/drivers/hal/server/
SocketServer.h 45 int32_t LoadHal(const string& path, int target_class, int target_type,
46 float target_version, const string& target_package,
47 const string& target_component_name,
48 const string& hw_binder_service_name,
49 const string& module_name);
50 string ReadSpecification(const string& name, int target_class,
52 const string& target_package);
53 string Call(const string& arg)
    [all...]
  /build/kati/
ninja.h 20 #include <string>
32 const string& orig_args,
35 string GetNinjaFilename();
36 string GetNinjaShellScriptFilename();
37 string GetNinjaStampFilename();
40 bool GetDepfileFromCommand(string* cmd, string* out);
  /device/google/cuttlefish_common/host/libs/ivserver/
options.h 20 #include <string>
32 IVServerOptions(const std::string &shm_file_path,
33 const std::string &qemu_socket_path,
34 const std::string &client_socket_path);
42 const std::string shm_file_path;
43 const std::string qemu_socket_path;
44 const std::string client_socket_path;
  /external/chromium-libpac/src/
proxy_resolver_js_bindings.h 10 #include <string>
25 virtual bool MyIpAddress(std::string* first_ip_address) = 0;
33 virtual bool MyIpAddressEx(std::string* ip_address_list) = 0;
37 virtual bool DnsResolve(const std::string& host,
38 std::string* first_ip_address) = 0;
45 virtual bool DnsResolveEx(const std::string& host,
46 std::string* ip_address_list) = 0;
  /external/deqp/framework/common/
tcuStringTemplate.hpp 23 * \brief String template class.
27 #include <string>
36 StringTemplate (const std::string& str);
39 void setString (const std::string& str);
41 std::string specialize (const std::map<std::string, std::string>& params) const;
47 std::string m_template;
  /external/mesa3d/src/gallium/state_trackers/clover/llvm/
invocation.hpp 33 module compile_program(const std::string &source,
35 const std::string &target,
36 const std::string &opts,
37 std::string &r_log);
41 const std::string &target,
42 const std::string &opts,
43 std::string &r_log);
  /external/parameter-framework/upstream/parameter/
ComponentInstance.h 34 #include <string>
41 CComponentInstance(const std::string &strName);
44 virtual bool getMappingData(const std::string &strKey, const std::string *&pStrValue) const;
49 * @return A std::string containing the mapping as a comma separated key value pairs
51 virtual std::string getFormattedMapping() const;
57 virtual std::string getKind() const;
58 std::string getXmlElementName() const override;
PluginLocation.h 33 #include <string>
39 CPluginLocation(const std::string &strName, const std::string &strKind);
45 const std::string &getFolder() const;
48 const std::list<std::string> &getPluginList() const;
51 std::string _strFolder;
52 std::list<std::string> _pluginList;
  /external/tensorflow/tensorflow/python/framework/
python_op_gen.h 19 #include <string>
31 // output as a string.
33 const std::vector<string>& hidden_ops, bool require_shapes);
34 string GetPythonOps(const OpList& ops, const ApiDefMap& api_defs,
35 const std::vector<string>& hidden_ops, bool require_shapes);
36 string GetPythonOp(const OpDef& op_def, const ApiDef& api_def,
37 const string& function_name);
43 string GetPythonWrappers(const char* op_list_buf, size_t op_list_len);
  /external/webrtc/webrtc/libjingle/xmpp/
saslmechanism.h 14 #include <string>
32 virtual std::string GetMechanismName() = 0;
50 static std::string Base64Encode(const std::string & plain);
51 static std::string Base64Decode(const std::string & encoded);
52 static std::string Base64EncodeFromArray(const char * plain, size_t length);
  /system/core/init/
property_service.h 22 #include <string>
27 extern uint32_t (*property_set)(const std::string& name, const std::string& value);
29 uint32_t HandlePropertySet(const std::string& name, const std::string& value,
30 const std::string& source_context, const ucred& cr, std::string* error);
  /system/tpm/trunks/
authorization_delegate.h 20 #include <string>
41 const std::string& command_hash,
44 std::string* authorization) = 0;
50 virtual bool CheckResponseAuthorization(const std::string& response_hash,
51 const std::string& authorization) = 0;
54 virtual bool EncryptCommandParameter(std::string* parameter) = 0;
57 virtual bool DecryptResponseParameter(std::string* parameter) = 0;
mock_authorization_delegate.h 20 #include <string>
35 bool(const std::string&, bool, bool, std::string*));
37 bool(const std::string&, const std::string&));
38 MOCK_METHOD1(EncryptCommandParameter, bool(std::string*));
39 MOCK_METHOD1(DecryptResponseParameter, bool(std::string*));
  /test/vts-testcase/fuzz/iface_fuzzer/include/
ProtoFuzzerStats.h 20 #include <string>
32 void RegisterTouch(std::string iface_name, std::string func_name);
33 // Returns collected stats in string form.
34 std::string StatsString() const;
36 const std::unordered_set<std::string> &TouchedIfaces() const {
43 std::unordered_map<std::string, uint64_t> touch_count_;
45 std::unordered_set<std::string> touched_ifaces_;
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Config/
Tcg2ConfigStrings.uni 2 String definitions for TCG2 configuration form.
17 #string STR_TCG2_TITLE #language en-US "TCG2 Configuration"
18 #string STR_TCG2_HELP #language en-US "Press <Enter> to select TCG2 Setup options."
20 #string STR_TCG2_DEVICE_STATE_PROMPT #language en-US "Current TPM Device"
21 #string STR_TCG2_DEVICE_STATE_HELP #language en-US "Current TPM Device: Disable, TPM1.2, or TPM2.0"
22 #string STR_TCG2_DEVICE_STATE_CONTENT #language en-US ""
24 #string STR_TCG2_DEVICE_PROMPT #language en-US "Attempt TPM Device"
25 #string STR_TCG2_DEVICE_HELP #language en-US "Attempt TPM Device: TPM1.2, or TPM2.0"
26 #string STR_TCG2_DEVICE_CONTENT #language en-US ""
28 #string STR_TPM2_ACPI_HID_PROMPT #language en-US "HID from TPM2 ACPI Table"
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellNetwork2CommandsLib/
UefiShellNetwork2CommandsLib.uni 3 String definitions for UEFI Shell network 2 commands
21 String definitions for UEFI Shell 2.0 network 2 commands
26 #string STR_GEN_ERR_AD #language en-US "%H%s%N: Access denied.\r\n"
27 #string STR_GEN_OUT_MEM #language en-US "%H%s%N: Memory allocation was not successful.\r\n"
29 #string STR_PING6_INVALID_IP #language en-US "%Ping6: Invalid IP6 address, %s\r\n"
30 #string STR_PING6_INVALID_INPUT #language en-US "%Ping6: Invalid input, please type 'Ping6 -?'for help\r\n"
31 #string STR_PING6_INVALID_SEND_NUMBER #language en-US "%Ping6: Invalid send number, %s\r\n"
32 #string STR_PING6_INVALID_BUFFER_SIZE #language en-US "%Ping6: Invalid buffer size, %s\r\n"
33 #string STR_PING6_INVALID_SOURCE #language en-US "%Ping6: Require source interface option\r\n"
34 #string STR_PING6_IP6_CONFIG #language en-US "%Ping6: The process of Ip6 Configure %r\r\n"
    [all...]
  /external/tensorflow/tensorflow/contrib/android/
asset_manager_filesystem.h 42 AssetManagerFileSystem(AAssetManager* asset_manager, const string& prefix);
45 Status FileExists(const string& fname) override;
47 const string& filename,
50 const string& filename,
53 Status GetFileSize(const string& f, uint64* s) override;
55 Status Stat(const string& fname, FileStatistics* stat) override;
56 Status GetChildren(const string& dir, std::vector<string>* r) override;
60 Status NewWritableFile(const string& fname,
62 Status NewAppendableFile(const string& fname
    [all...]
  /frameworks/native/libs/ui/
DebugUtils.cpp 22 #include <string>
28 std::string decodeStandard(android_dataspace dataspace) {
32 return std::string("BT709");
35 return std::string("BT601_625");
38 return std::string("BT601_625_UNADJUSTED");
41 return std::string("BT601_525");
44 return std::string("BT601_525_UNADJUSTED");
47 return std::string("BT2020");
50 return std::string("BT2020 (constant luminance)");
53 return std::string("BT470M")
    [all...]
  /system/core/base/include/android-base/
file.h 22 #include <string>
36 bool ReadFdToString(int fd, std::string* content);
37 bool ReadFileToString(const std::string& path, std::string* content,
40 bool WriteStringToFile(const std::string& content, const std::string& path,
42 bool WriteStringToFd(const std::string& content, int fd);
45 bool WriteStringToFile(const std::string& content, const std::string& path,
64 bool RemoveFileIfExists(const std::string& path, std::string* err = nullptr)
    [all...]
  /external/parameter-framework/upstream/bindings/python/
pfw.i 51 // We need to tell SWIG that std::vector<std::string> is a vector of strings
53 %template(StringVector) vector<string>;
56 // Tells swig that 'std::string& strError' must be treated as output parameters
58 %apply std::string &OUTPUT { std::string& strError };
62 // that can return an error string.
77 CParameterMgrFullConnector(const std::string& strConfigurationFilePath);
79 bool start(std::string& strError);
84 ISelectionCriterionInterface* createSelectionCriterion(const std::string& strName,
86 ISelectionCriterionInterface* getSelectionCriterion(const std::string& strName)
    [all...]
  /system/tpm/tpm_manager/common/
print_tpm_manager_proto.h 10 #include <string>
16 std::string GetProtoDebugStringWithIndent(TpmManagerStatus value,
18 std::string GetProtoDebugString(TpmManagerStatus value);
19 std::string GetProtoDebugStringWithIndent(NvramResult value, int indent_size);
20 std::string GetProtoDebugString(NvramResult value);
21 std::string GetProtoDebugStringWithIndent(NvramSpaceAttribute value,
23 std::string GetProtoDebugString(NvramSpaceAttribute value);
24 std::string GetProtoDebugStringWithIndent(NvramSpacePolicy value,
26 std::string GetProtoDebugString(NvramSpacePolicy value);
27 std::string GetProtoDebugStringWithIndent(const NvramPolicyRecord& value
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesShaderIntrinsicsStorage.hpp 37 const std::string& name,
46 virtual std::string getSparseImageTypeName (void) const = 0;
47 virtual std::string getUniformConstSparseImageTypeName (void) const = 0;
49 virtual std::string sparseImageOpString (const std::string& resultVariable,
50 const std::string& resultType,
51 const std::string& image,
52 const std::string& coord,
53 const std::string& mipLevel) const = 0;
60 const std::string& name
    [all...]
  /external/webrtc/webrtc/libjingle/xmllite/
xmlnsstack.h 14 #include <string>
26 void AddXmlns(const std::string& prefix, const std::string& ns);
32 std::pair<std::string, bool> NsForPrefix(const std::string& prefix);
33 bool PrefixMatchesNs(const std::string & prefix, const std::string & ns);
34 std::pair<std::string, bool> PrefixForNs(const std::string& ns, bool isAttr);
35 std::pair<std::string, bool> AddNewPrefix(const std::string& ns, bool isAttr)
    [all...]

Completed in 1227 milliseconds

<<11121314151617181920>>