OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Dylib
(Results
1 - 4
of
4
) sorted by null
/external/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp
78
Dylibs("
dylib
",
263
for (const std::string &
Dylib
: Dylibs) {
264
if (!sys::fs::is_regular_file(
Dylib
))
265
report_fatal_error("
Dylib
not found: '" +
Dylib
+ "'.");
267
if (sys::DynamicLibrary::LoadLibraryPermanently(
Dylib
.c_str(), &ErrMsg))
268
report_fatal_error("Error loading '" +
Dylib
+ "': " + ErrMsg);
/prebuilts/go/darwin-x86/src/debug/macho/
file.go
123
// A
Dylib
represents a Mach-O load dynamic library command.
124
type
Dylib
struct {
258
l := new(
Dylib
)
519
if lib, ok := l.(*
Dylib
); ok {
/prebuilts/go/linux-x86/src/debug/macho/
file.go
123
// A
Dylib
represents a Mach-O load dynamic library command.
124
type
Dylib
struct {
258
l := new(
Dylib
)
519
if lib, ok := l.(*
Dylib
); ok {
/external/llvm/lib/Object/
MachOObjectFile.cpp
774
// libFoo.A.
dylib
775
// libFoo.
dylib
777
// libFoo_profile.A.
dylib
778
// libFoo_profile.
dylib
790
StringRef Foo, F, DotFramework, V,
Dylib
, Lib, Dot, Qtx;
850
Dylib
= Name.slice(a, Name.npos);
851
if (
Dylib
!= ".
dylib
")
854
// First pull off the version letter for the form Foo.A.
dylib
if any.
866
// ignore any suffix after an underbar like Foo_profile.A.
dylib
[
all
...]
Completed in 1561 milliseconds