Home
last modified time | relevance | path

Searched refs:functionName (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/cpp/telemetry/script_executor/src/
DScriptExecutorJni.cpp72 JNIEnv* env, jobject object, jlong luaEnginePtr, jstring scriptBody, jstring functionName, in Java_com_android_car_telemetry_ScriptExecutor_nativeInvokeScript() argument
80 if (functionName == nullptr) { in Java_com_android_car_telemetry_ScriptExecutor_nativeInvokeScript()
102 const char* functionNameStr = env->GetStringUTFChars(functionName, nullptr); in Java_com_android_car_telemetry_ScriptExecutor_nativeInvokeScript()
104 env->ReleaseStringUTFChars(functionName, functionNameStr); in Java_com_android_car_telemetry_ScriptExecutor_nativeInvokeScript()
DLuaEngine.cpp68 bool LuaEngine::PushFunction(const char* functionName) { in PushFunction() argument
74 lua_getglobal(mLuaState, functionName); in PushFunction()
DLuaEngine.h49 bool PushFunction(const char* functionName);
/packages/modules/Connectivity/Tethering/jni/
Dcom_android_networkstack_tethering_BpfMap.cpp34 static void throwErrnoException(JNIEnv* env, const char* functionName, int error) { in throwErrnoException() argument
43 ScopedLocalRef<jstring> msg(env, env->NewStringUTF(functionName)); in throwErrnoException()
88 static jboolean throwIfNotEnoent(JNIEnv *env, const char* functionName, int ret, int err) { in throwIfNotEnoent() argument
91 if (err != ENOENT) throwErrnoException(env, functionName, err); in throwIfNotEnoent()
/packages/services/Car/service/src/com/android/car/telemetry/
DScriptExecutor.java50 public void invokeScript(String scriptBody, String functionName, Bundle publishedData, in invokeScript() argument
53 nativeInvokeScript(mLuaEnginePtr, scriptBody, functionName, publishedData, in invokeScript()
113 String functionName, Bundle publishedData, Bundle savedState, in nativeInvokeScript() argument
/packages/services/Car/car-lib/src/android/car/telemetry/
DIScriptExecutor.aidl39 String functionName, in invokeScript() argument