OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DBGBuildSourcePath
(Results
1 - 2
of
2
) sorted by null
/external/lldb/source/Plugins/SymbolVendor/MacOSX/
SymbolVendorMacOSX.cpp
200
char
DBGBuildSourcePath
[PATH_MAX];
202
DBGBuildSourcePath
[0] = '\0';
222
if (strcmp(key_name, "
DBGBuildSourcePath
") == 0)
234
strncpy(
DBGBuildSourcePath
, node_content, sizeof(
DBGBuildSourcePath
));
272
if (
DBGBuildSourcePath
[0] && DBGSourcePath[0])
274
module_sp->GetSourceMappingList().Append (ConstString(
DBGBuildSourcePath
), ConstString(DBGSourcePath), true);
/external/lldb/source/Host/macosx/
Symbols.cpp
375
CFStringRef build_src_cfpath = static_cast<CFStringRef>(::CFDictionaryGetValue (uuid_dict, CFSTR("
DBGBuildSourcePath
")));
608
std::string
DBGBuildSourcePath
;
611
cf_str = (CFStringRef)CFDictionaryGetValue ((CFDictionaryRef) uuid_dict, CFSTR("
DBGBuildSourcePath
"));
614
CFCString::FileSystemRepresentation(cf_str,
DBGBuildSourcePath
);
623
if (!
DBGBuildSourcePath
.empty() && !DBGSourcePath.empty())
625
module_spec.GetSourceMappingList().Append (ConstString(
DBGBuildSourcePath
.c_str()), ConstString(DBGSourcePath.c_str()), true);
[
all
...]
Completed in 1155 milliseconds