/external/lldb/source/Interpreter/ |
OptionValueUUID.cpp | 111 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/Host/common/ |
Symbols.cpp | 53 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/Plugins/SymbolVendor/MacOSX/ |
SymbolVendorMacOSX.cpp | 185 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/lldb/source/Core/ |
ModuleList.cpp | 966 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()); [all...] |
/external/lldb/source/Host/macosx/ |
Symbols.cpp | 720 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()) [all...] |
/external/lldb/source/Plugins/Process/MacOSX-Kernel/ |
CommunicationKDP.cpp | 552 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) [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wps_supplicant.c | 687 char uuid_str[100]; local 690 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); 699 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state, 712 char uuid_str[100]; local 713 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str)); 714 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str); 721 char uuid_str[100]; local 724 uuid_bin2str(enrollee->uuid, uuid_str, sizeof(uuid_str)) 747 char uuid_str[100]; local 758 char uuid_str[100]; local 784 char uuid_str[100]; local [all...] |
ctrl_iface.c | 1767 char uuid_str[100]; local [all...] |
/external/bluetooth/bluedroid/btif/src/ |
btif_dm.c | 1079 char uuid_str[128] = UUID_HUMAN_INTERFACE_DEVICE; local [all...] |
/external/e2fsprogs/lib/blkid/ |
probe.c | 687 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); [all...] |
/external/lldb/source/Commands/ |
CommandObjectTarget.cpp | 2937 std::string uuid_str; local [all...] |