OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dispatchTab
(Results
1 - 4
of
4
) sorted by null
/frameworks/rs/cpp/
rsDispatch.cpp
26
bool loadSymbols(void* handle, dispatchTable&
dispatchTab
, int targetApiLevel) {
29
dispatchTab
.SetNativeLibDir = (SetNativeLibDirFnPtr)dlsym(handle, "rsaContextSetNativeLibDir");
30
if (
dispatchTab
.SetNativeLibDir == nullptr) {
31
LOG_ERR("Couldn't initialize
dispatchTab
.SetNativeLibDir");
36
dispatchTab
.Allocation1DData = (Allocation1DDataFnPtr)dlsym(handle, "rsAllocation1DData");
37
dispatchTab
.Allocation1DElementData = (Allocation1DElementDataFnPtr)dlsym(handle, "rsAllocation1DElementData");
38
dispatchTab
.Allocation1DRead = (Allocation1DReadFnPtr)dlsym(handle, "rsAllocation1DRead");
39
dispatchTab
.Allocation2DData = (Allocation2DDataFnPtr)dlsym(handle, "rsAllocation2DData");
40
dispatchTab
.Allocation2DRead = (Allocation2DReadFnPtr)dlsym(handle, "rsAllocation2DRead");
41
dispatchTab
.Allocation3DData = (Allocation3DDataFnPtr)dlsym(handle, "rsAllocation3DData")
[
all
...]
rsDispatch.h
187
bool loadSymbols(void* handle, dispatchTable&
dispatchTab
, int device_api = 0);
/frameworks/support/v8/renderscript/jni/
android_rscompat_usage_io.cpp
9
extern "C" void AllocationSetSurface(JNIEnv *_env, jobject _this, RsContext con, RsAllocation alloc, jobject sur, dispatchTable
dispatchTab
)
18
dispatchTab
.AllocationSetSurface(con, alloc, s);
android_renderscript_RenderScript.cpp
270
static dispatchTable
dispatchTab
;
293
if (loadSymbols(handle,
dispatchTab
, targetApi) == false) {
350
dispatchTab
.ContextFinish((RsContext)con);
442
ret = (jlong)(uintptr_t)
dispatchTab
.ClosureCreate(
499
ret = (jlong)(uintptr_t)
dispatchTab
.InvokeClosureCreate(
518
dispatchTab
.ClosureSetArg((RsContext)con, (RsClosure)closureID, (uint32_t)index,
526
dispatchTab
.ClosureSetGlobal((RsContext)con, (RsClosure)closureID,
557
ret = (jlong)(uintptr_t)
dispatchTab
.ScriptGroup2Create(
571
dispatchTab
.ScriptGroupExecute((RsContext)con, (RsScriptGroup2)groupID);
578
dispatchTab
.ObjDestroy((RsContext)con, (void *)obj)
[
all
...]
Completed in 96 milliseconds