Searched refs:func_name (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/media/mca/filterfw/native/core/
H A Dnative_program.cpp57 bool NativeProgram::BindProcessFunction(const std::string& func_name) { argument
60 process_function_ = reinterpret_cast<ProcessFunctionPtr>(dlsym(lib_handle_, func_name.c_str()));
62 ALOGE("NativeProgram: Could not find process function symbol: '%s'!", func_name.c_str());
68 bool NativeProgram::BindInitFunction(const std::string& func_name) { argument
71 init_function_ = reinterpret_cast<InitFunctionPtr>(dlsym(lib_handle_, func_name.c_str()));
75 bool NativeProgram::BindSetValueFunction(const std::string& func_name) { argument
78 setvalue_function_ = reinterpret_cast<SetValueFunctionPtr>(dlsym(lib_handle_, func_name.c_str()));
82 bool NativeProgram::BindGetValueFunction(const std::string& func_name) { argument
85 getvalue_function_ = reinterpret_cast<GetValueFunctionPtr>(dlsym(lib_handle_, func_name.c_str()));
89 bool NativeProgram::BindResetFunction(const std::string& func_name) { argument
96 BindTeardownFunction(const std::string& func_name) argument
[all...]
H A Dnative_program.h46 bool BindInitFunction(const std::string& func_name);
47 bool BindSetValueFunction(const std::string& func_name);
48 bool BindGetValueFunction(const std::string& func_name);
49 bool BindProcessFunction(const std::string& func_name);
50 bool BindResetFunction(const std::string& func_name);
51 bool BindTeardownFunction(const std::string& func_name);
/frameworks/base/media/mca/filterfw/jni/
H A Djni_native_program.h43 jstring func_name);
48 jstring func_name);
53 jstring func_name);
58 jstring func_name);
63 jstring func_name);
68 jstring func_name);
H A Djni_native_program.cpp52 jstring func_name) {
54 return ToJBool(program && func_name && program->BindInitFunction(ToCppString(env, func_name)));
59 jstring func_name) {
62 func_name &&
63 program->BindSetValueFunction(ToCppString(env, func_name)));
68 jstring func_name) {
71 func_name &&
72 program->BindGetValueFunction(ToCppString(env, func_name)));
77 jstring func_name) {
50 Java_android_filterfw_core_NativeProgram_bindInitFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
57 Java_android_filterfw_core_NativeProgram_bindSetValueFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
66 Java_android_filterfw_core_NativeProgram_bindGetValueFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
75 Java_android_filterfw_core_NativeProgram_bindProcessFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
82 Java_android_filterfw_core_NativeProgram_bindResetFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
91 Java_android_filterfw_core_NativeProgram_bindTeardownFunction(JNIEnv* env, jobject thiz, jstring func_name) argument
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSExecutable.cpp103 const char *func_name = foreach_iter->first; local
104 android::String8 expanded_func_name(func_name);
177 const char* func_name = func_list[i]; local
178 void *func = mLoader->getSymbolAddress(func_name);
179 size_t func_size = mLoader->getSymbolSize(func_name);
185 Disassemble(pOutput, DEFAULT_TARGET_TRIPLE_STRING, func_name,
190 func_name, mObjFile->getName().c_str(), static_cast<size_t>(result));

Completed in 1360 milliseconds