Searched refs:uuid_str (Results 1 - 12 of 12) sorted by relevance

/external/lldb/source/Host/common/
H A DSymbols.cpp53 std::string uuid_str; local
59 uuid_str = module_uuid.GetAsString("");
60 uuid_str.insert (2, 1, '/');
61 uuid_str = uuid_str + ".debug";
81 files.push_back (dirname + "/.build-id/" + uuid_str);
/external/lldb/source/Interpreter/
H A DOptionValueUUID.cpp111 std::string uuid_str; local
112 uuid_str = module_uuid.GetAsString();
113 if (!uuid_str.empty())
114 matches.AppendString(uuid_str.c_str());
/external/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp185 std::string uuid_str = dsym_uuid.GetAsString (); local
186 if (!uuid_str.empty())
193 snprintf(dsym_uuid_plist_path, sizeof(dsym_uuid_plist_path), "%s%s.plist", dsym_path, uuid_str.c_str());
/external/wpa_supplicant_8/wpa_supplicant/
H A Dwps_supplicant.c710 char uuid_str[100]; local
713 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
722 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
735 char uuid_str[100]; local
736 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
737 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
744 char uuid_str[100]; local
747 uuid_bin2str(enrollee->uuid, uuid_str, sizeo
770 char uuid_str[100]; local
781 char uuid_str[100]; local
807 char uuid_str[100]; local
[all...]
H A Dctrl_iface.c1993 char uuid_str[100]; local
1994 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
1995 ret = os_snprintf(pos, end - pos, "uuid=%s\n", uuid_str);
/external/lldb/source/Host/macosx/
H A DSymbols.cpp720 std::string uuid_str; local
725 uuid_str = uuid_ptr->GetAsString();
731 if (!uuid_str.empty())
732 command.Printf("%s --ignoreNegativeCache --copyExecutable %s", g_dsym_for_uuid_exe_path, uuid_str.c_str());
759 if (!uuid_str.empty())
761 CFCString uuid_cfstr(uuid_str.c_str());
/external/lldb/source/Core/
H A DModuleList.cpp966 std::string uuid_str; local
968 uuid_str = uuid_ptr->GetAsString();
972 if (!uuid_str.empty())
973 error.SetErrorStringWithFormat("'%s' does not contain the %s architecture and UUID %s", path, arch.GetArchitectureName(), uuid_str.c_str());
1043 std::string uuid_str; local
1045 uuid_str = uuid_ptr->GetAsString();
1047 if (!uuid_str.empty())
1048 error.SetErrorStringWithFormat("cannot locate a module for UUID '%s'", uuid_str.c_str());
/external/e2fsprogs/lib/blkid/
H A Dprobe.c687 char uuid_str[17], label_str[129], *cp; local
780 sprintf(uuid_str, "%016llX", blkid_le64(ns->volume_serial));
781 blkid_set_tag(probe->dev, "UUID", uuid_str, 0);
1165 char uuid_str[17]; local
1175 sprintf(uuid_str, "%016llX", uuid);
1176 blkid_set_tag(probe->dev, "UUID", uuid_str, 0);
1209 char uuid_str[17], label[512]; local
1241 sprintf(uuid_str, "%016llX", uuid);
1242 blkid_set_tag(probe->dev, "UUID", uuid_str, 0);
/external/lldb/examples/python/
H A Dsymbolication.py313 uuid_str = self.get_normalized_uuid_string()
314 if uuid_str:
315 self.module = target.AddModule (None, None, uuid_str)
321 self.module = target.AddModule (resolved_path, self.arch, uuid_str, self.symfile)
H A Dcrashlog.py165 uuid_str = self.get_normalized_uuid_string()
166 print 'Getting symbols for %s %s...' % (uuid_str, self.path),
168 dsym_for_uuid_command = '%s %s' % (self.dsymForUUIDBinary, uuid_str)
173 plist = plist_root[uuid_str]
195 print "error\n error: unable to locate '%s' with UUID %s" % (self.path, uuid_str)
/external/lldb/source/Plugins/Process/MacOSX-Kernel/
H A DCommunicationKDP.cpp552 std::string uuid_str = m_kernel_version.substr(p, 36); local
553 if (uuid_str.size() < 32)
556 if (uuid.SetFromCString (uuid_str.c_str()) == 0)
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp2937 std::string uuid_str; local
2945 uuid_str = module_spec.GetUUID().GetAsString();
2951 !uuid_str.empty() ? " uuid=" : "",
2952 uuid_str.c_str());
2964 !uuid_str.empty() ? " uuid=" : "",
2965 uuid_str.c_str());

Completed in 288 milliseconds