Searched refs:uuid_str (Results 1 - 18 of 18) 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/netperf/src/
H A Dnet_uuid.c329 void get_uuid_string(char *uuid_str, size_t size) { argument
333 snpuid(uuid_str,size,u);
344 char uuid_str[38]; local
348 snpuid(uuid_str,sizeof(uuid_str),u);
349 printf("\nas a string %s\n",uuid_str);
351 get_uuid_string(uuid_str,sizeof(uuid_str));
352 printf("uuid_str is %s\n",uuid_str);
[all...]
/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchRequestBasic/
H A Dbluetooth_SDP_ServiceSearchRequestBasic.py92 uuid_str = str(uuid.UUID(int=uuid128))
93 self.device.register_profile(path_str, uuid_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.c717 char uuid_str[100]; local
720 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
729 uuid_str, MAC2STR(ap->mac_addr), dev_type, ap->wps_state,
742 char uuid_str[100]; local
743 uuid_bin2str(ap->uuid, uuid_str, sizeof(uuid_str));
744 wpa_msg(wpa_s, MSG_INFO, WPS_EVENT_ER_AP_REMOVE "%s", uuid_str);
751 char uuid_str[100]; local
754 uuid_bin2str(enrollee->uuid, uuid_str, sizeo
777 char uuid_str[100]; local
788 char uuid_str[100]; local
814 char uuid_str[100]; local
[all...]
H A Dctrl_iface.c2036 char uuid_str[100]; local
2037 uuid_bin2str(wpa_s->wps->uuid, uuid_str, sizeof(uuid_str));
2038 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/autotest/server/site_tests/bluetooth_SDP_ServiceAttributeRequest/
H A Dbluetooth_SDP_ServiceAttributeRequest.py431 uuid_str = str(uuid.UUID(int=uuid128))
434 uuid_str,
/external/autotest/server/site_tests/bluetooth_SDP_ServiceSearchAttributeRequest/
H A Dbluetooth_SDP_ServiceSearchAttributeRequest.py458 uuid_str = str(uuid.UUID(int=uuid128))
461 uuid_str,
/external/dbus/dbus/
H A Ddbus-internals.c884 * @param uuid_str string to append hex-encoded machine uuid to
888 _dbus_get_local_machine_uuid_encoded (DBusString *uuid_str) argument
916 ok = _dbus_uuid_encode (&machine_uuid, uuid_str);
H A Ddbus-internals.h369 dbus_bool_t _dbus_get_local_machine_uuid_encoded (DBusString *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 556 milliseconds