OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RSExecRef
(Results
1 - 3
of
3
) sorted by null
/frameworks/rs/driver/linkloader/android/
librsloader.h
27
typedef struct RSExecOpaque *
RSExecRef
;
30
RSExecRef
rsloaderCreateExec(unsigned char const *buf,
35
RSExecRef
rsloaderLoadExecutable(unsigned char const *buf,
38
int rsloaderRelocateExecutable(
RSExecRef
object,
42
void rsloaderUpdateSectionHeaders(
RSExecRef
object, unsigned char *buf);
44
void rsloaderDisposeExec(
RSExecRef
object);
46
void *rsloaderGetSymbolAddress(
RSExecRef
object, char const *name);
48
size_t rsloaderGetSymbolSize(
RSExecRef
object, char const *name);
50
size_t rsloaderGetFuncCount(
RSExecRef
object);
52
void rsloaderGetFuncNameList(
RSExecRef
object, size_t size, char const **list)
[
all
...]
librsloader.cpp
31
static inline
RSExecRef
wrap(ELFObject<32> *object) {
32
return reinterpret_cast<
RSExecRef
>(object);
35
static inline ELFObject<32> *unwrap(
RSExecRef
object) {
39
extern "C"
RSExecRef
rsloaderCreateExec(unsigned char const *buf,
43
RSExecRef
object = rsloaderLoadExecutable(buf, buf_size);
56
extern "C"
RSExecRef
rsloaderLoadExecutable(unsigned char const *buf,
69
extern "C" int rsloaderRelocateExecutable(
RSExecRef
object_,
78
extern "C" void rsloaderUpdateSectionHeaders(
RSExecRef
object_,
100
extern "C" void rsloaderDisposeExec(
RSExecRef
object) {
104
extern "C" void *rsloaderGetSymbolAddress(
RSExecRef
object_
[
all
...]
test-librsloader.c
96
RSExecRef
object = rsloaderCreateExec(image, sb.st_size, find_sym, 0);
Completed in 212 milliseconds