OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:object_file
(Results
1 - 2
of
2
) sorted by null
/frameworks/compile/libbcc/lib/Renderscript/
RSCompilerDriver.cpp
104
InputFile *
object_file
= new (std::nothrow) InputFile(output_path.c_str());
local
106
if ((
object_file
== NULL) ||
object_file
->hasError()) {
108
//
object_file
->getErrorMessage().c_str());
109
delete
object_file
;
114
// Acquire the read lock on
object_file
for reading its RS info file.
118
if (!
object_file
->lock()) {
121
object_file
->getErrorMessage().c_str());
122
delete
object_file
;
132
// Release the lock on
object_file
[
all
...]
/external/llvm/bindings/python/llvm/
object.py
284
def __init__(self, ptr,
object_file
):
286
assert isinstance(
object_file
, ObjectFile)
291
self._object_file =
object_file
Completed in 44 milliseconds