Home
last modified time | relevance | path

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

/frameworks/native/opengl/tools/glgen/src/
DParameterChecker.java45 public String[] getChecks(String functionName) { in getChecks() argument
46 String[] checks = map.get(functionName); in getChecks()
48 (functionName.endsWith("fv") || in getChecks()
49 functionName.endsWith("xv") || in getChecks()
50 functionName.endsWith("iv"))) { in getChecks()
51 functionName = functionName.substring(0, functionName.length() - 2); in getChecks()
52 checks = map.get(functionName); in getChecks()
/frameworks/base/ravenwood/runtime-helper-src/libcore-fake/android/system/
DErrnoException.java30 private final String functionName; field in ErrnoException
40 public ErrnoException(String functionName, int errno) { in ErrnoException() argument
41 this.functionName = functionName; in ErrnoException()
48 public ErrnoException(String functionName, int errno, Throwable cause) { in ErrnoException() argument
50 this.functionName = functionName; in ErrnoException()
60 return functionName + " failed: " + errno; in getMessage()
/frameworks/av/services/camera/libcameraservice/
DCameraServiceWatchdog.h56 std::string functionName; member
82 auto watchThread(T func, uint32_t tid, const char* functionName, uint32_t cycles, in watchThread() argument
99 res = watchThread(func, tid, functionName); in watchThread()
103 res = tempWatchdog->watchThread(func, tid, functionName); in watchThread()
109 res = watchThread(func, tid, functionName); in watchThread()
117 auto watchThread(T func, uint32_t tid, const char* functionName) { in watchThread() argument
122 start(tid, functionName); in watchThread()
138 void start(uint32_t tid, const char* functionName);
146 std::string getAbortMessage(const std::string& functionName);
DCameraServiceWatchdog.cpp46 std::string abortMessage = getAbortMessage(mTidMap[currentThreadId].functionName); in threadLoop()
62 std::string CameraServiceWatchdog::getAbortMessage(const std::string& functionName) { in getAbortMessage() argument
64 + functionName; in getAbortMessage()
104 void CameraServiceWatchdog::start(uint32_t tid, const char* functionName) in start() argument
110 monitoredFunction.functionName = functionName; in start()
/frameworks/native/services/vibratorservice/include/vibratorservice/
DVibratorHalController.h96 HalResult<T> doWithRetry(const HalFunction<HalResult<T>>& halFn, const char* functionName) { in doWithRetry() argument
97 return doWithRetry<T>(halFn, HalResult<T>::unsupported(), functionName); in doWithRetry()
116 const char* functionName) { in doWithRetry() argument
118 ALOGV("Skipped %s because Vibrator HAL is not available", functionName); in doWithRetry()
127 HalResult<T> result = doOnce(hal.get(), halFn, functionName); in doWithRetry()
130 result = doOnce(hal.get(), halFn, functionName); in doWithRetry()
137 const char* functionName) { in doOnce() argument
140 ALOGE("Vibrator HAL %s failed: %s", functionName, result.errorMessage()); in doOnce()
DVibratorManagerHalController.h74 HalResult<T> processHalResult(HalResult<T> result, const char* functionName);
80 HalResult<T> apply(hal_fn<T>& halFn, const char* functionName);
DVibratorHalWrapper.h282 void logFailure(HalResult<T> result, const char* functionName) const { in logFailure() argument
284 ALOGE("Vibrator HAL %s failed: %s", functionName, result.errorMessage()); in logFailure()
/frameworks/native/libs/gui/
DFrameRateUtils.cpp36 const char* functionName = inFunctionName != nullptr ? inFunctionName : "call"; in ValidateFrameRate() local
39 ALOGE("%s failed - invalid frame rate %f", functionName, frameRate); in ValidateFrameRate()
49 ALOGE("%s failed - invalid compatibility value %d privileged: %s", functionName, in ValidateFrameRate()
57 ALOGE("%s failed - invalid change frame rate strategy value %d", functionName, in ValidateFrameRate()
/frameworks/native/services/vibratorservice/
DVibratorManagerHalController.cpp46 HalResult<T> ManagerHalController::processHalResult(HalResult<T> result, const char* functionName) { in processHalResult() argument
48 ALOGE("VibratorManager HAL %s failed: %s", functionName, result.errorMessage()); in processHalResult()
55 const char* functionName) { in apply() argument
64 ALOGV("Skipped %s because VibratorManager HAL is not available", functionName); in apply()
71 HalResult<T> result = processHalResult(halFn(hal), functionName); in apply()
77 result = processHalResult(halFn(hal), functionName); in apply()
/frameworks/compile/libbcc/lib/
DRSScriptGroupFusion.cpp43 const char* functionName = metadata.getExportFuncNameList()[slot]; in getInvokeFunction() local
44 Function* func = newModule->getFunction(functionName); in getInvokeFunction()
56 const char* functionName = metadata.getExportForEachNameList()[slot]; in getFunction() local
57 if (functionName == nullptr || !functionName[0]) { in getFunction()
65 source->getName().c_str(), functionName); in getFunction()
73 const Function* function = mergedModule->getFunction(functionName); in getFunction()
/frameworks/base/ravenwood/runtime-jni/
Dravenwood_runtime.cpp31 static void throwErrnoException(JNIEnv* env, const char* functionName) { in throwErrnoException() argument
33 jniThrowErrnoException(env, functionName, error); in throwErrnoException()
/frameworks/rs/script_api/
DGenerateRSFunctionsList.cpp329 const string& functionName = permutation.getName(); in addFunctionManglingToSet() local
333 stream << "_Z" << mangleLongName(functionName); in addFunctionManglingToSet()
335 cerr << "Error mangling " << functionName << ". See above message.\n"; in addFunctionManglingToSet()
340 mangling = functionName; in addFunctionManglingToSet()
/frameworks/libs/systemui/monet/tests/com/android/systemui/monet/
DColorSchemeTest.kt189 val functionName = T::class.simpleName + "" in buildDoc() constant
195 document.appendWithBreak(document.createComment(testName(functionName))) in buildDoc()
/frameworks/av/media/libaaudio/src/utility/
DAAudioUtilities.cpp609 static int32_t AAudioProperty_getMMapOffsetMicros(const char *functionName, in AAudioProperty_getMMapOffsetMicros() argument
616 ALOGW("%s: clipped %d to %d", functionName, prop, minMicros); in AAudioProperty_getMMapOffsetMicros()
619 ALOGW("%s: clipped %d to %d", functionName, prop, minMicros); in AAudioProperty_getMMapOffsetMicros()
/frameworks/native/include/powermanager/
DPowerHalController.h87 HalResult<T> processHalResult(HalResult<T>&& result, const char* functionName);
/frameworks/base/core/java/android/database/sqlite/
DSQLiteDatabase.java1230 public void setCustomScalarFunction(@NonNull String functionName, in setCustomScalarFunction() argument
1232 Objects.requireNonNull(functionName); in setCustomScalarFunction()
1238 mConfigurationLocked.customScalarFunctions.put(functionName, scalarFunction); in setCustomScalarFunction()
1242 mConfigurationLocked.customScalarFunctions.remove(functionName); in setCustomScalarFunction()
1276 public void setCustomAggregateFunction(@NonNull String functionName, in setCustomAggregateFunction() argument
1278 Objects.requireNonNull(functionName); in setCustomAggregateFunction()
1284 mConfigurationLocked.customAggregateFunctions.put(functionName, aggregateFunction); in setCustomAggregateFunction()
1288 mConfigurationLocked.customAggregateFunctions.remove(functionName); in setCustomAggregateFunction()
/frameworks/base/core/jni/
Dandroid_database_SQLiteConnection.cpp246 jstring functionName, jobject functionObj) { in nativeRegisterCustomScalarFunction() argument
250 ScopedUtfChars functionNameChars(env, functionName); in nativeRegisterCustomScalarFunction()
340 jstring functionName, jobject functionObj) { in nativeRegisterCustomAggregateFunction() argument
344 ScopedUtfChars functionNameChars(env, functionName); in nativeRegisterCustomAggregateFunction()
/frameworks/base/services/core/jni/
Dcom_android_server_vibrator_VibratorController.cpp129 const char* functionName) { in halCall() argument
130 return mHal->doWithRetry(fn, functionName); in halCall()
/frameworks/base/core/java/android/app/admin/
DDevicePolicyManager.java14963 private void throwIfParentInstance(String functionName) { in throwIfParentInstance() argument
14965 throw new SecurityException(functionName + " cannot be called on the parent instance"); in throwIfParentInstance()