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/cpu_ref/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<64> *object) {
32
return reinterpret_cast<
RSExecRef
>(object);
35
static inline
RSExecRef
wrap(ELFObject<32> *object) {
36
return reinterpret_cast<
RSExecRef
>(object);
41
static inline ELFObject<64> *unwrap(
RSExecRef
object) {
45
static inline ELFObject<32> *unwrap(
RSExecRef
object) {
50
extern "C"
RSExecRef
rsloaderCreateExec(unsigned char const *buf,
54
RSExecRef
object = rsloaderLoadExecutable(buf, buf_size);
67
extern "C"
RSExecRef
rsloaderLoadExecutable(unsigned char const *buf,
84
extern "C" int rsloaderRelocateExecutable(
RSExecRef
object_
[
all
...]
test-librsloader.c
96
RSExecRef
object = rsloaderCreateExec(image, sb.st_size, find_sym, 0);
Completed in 151 milliseconds