Lines Matching refs:string

32 using std::string;
40 static string GetVersionString(const CompSpec &comp_spec) { in GetVersionString()
47 static string GetDriverName(const CompSpec &comp_spec) { in GetDriverName()
48 string version_string = GetVersionString(comp_spec); in GetDriverName()
49 string driver_name = in GetDriverName()
54 static string GetServiceName(const CompSpec &comp_spec) { in GetServiceName()
55 string hal_name = comp_spec.package(); in GetServiceName()
56 string iface_name = comp_spec.component_name(); in GetServiceName()
70 string service_name = *instance_names.begin(); in GetServiceName()
72 for (const string &instance_name : instance_names) { in GetServiceName()
80 static void *Dlopen(string lib_name) { in Dlopen()
92 static void *Dlsym(void *handle, string function_name) { in Dlsym()
105 static void GetService(DriverBase *hal, string service_name, bool binder_mode) { in GetService()
137 string function_name = GetFunctionNamePrefix(comp_spec); in LoadInterface()
152 const string version_iface) { in ProtoFuzzerRunner()
154 string target_version = GetVersionString(comp_spec); in ProtoFuzzerRunner()
156 string name = comp_spec.component_name(); in ProtoFuzzerRunner()
162 void ProtoFuzzerRunner::Init(const string &iface_name, bool binder_mode) { in Init()
165 string driver_name = GetDriverName(*comp_spec); in Init()
169 string service_name = GetServiceName(*comp_spec); in Init()
190 string iface_name = func_call.hidl_interface_name(); in Execute()
206 static string StripNamespace(const string &type) { in StripNamespace()
208 if (idx == string::npos) { in StripNamespace()
221 string type = var.predefined_type(); in ProcessReturnValue()
222 string iface_name = StripNamespace(type); in ProcessReturnValue()
240 const CompSpec *ProtoFuzzerRunner::FindCompSpec(std::string name) { in FindCompSpec()