Searched defs:function (Results 1 - 15 of 15) sorted by path

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.cpp31 /* function Approximate DCT function, scaling and threshold */
50 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[]) argument
84 OSCL_UNUSED_ARG(function);
260 /* function Approximate DCT function, scaling and threshold */
279 PV_STATUS CodeMB_MPEG(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[]) argument
315 OSCL_UNUSED_ARG(function);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dh264bsdClearMbLayer.S48 function h264bsdClearMbLayer, export=1 label
H A Dh264bsdCountLeadingZeros.S42 function h264bsdCountLeadingZeros, export=1 label
H A Dh264bsdFillRow7.S48 function h264bsdFillRow7, export=1 label
H A Dh264bsdFlushBits.S50 function h264bsdFlushBits, export=1 label
H A Dh264bsdWriteMacroblock.S91 function h264bsdWriteMacroblock, export=1 label
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnection.java124 SQLiteCustomFunction function);
398 SQLiteCustomFunction function = configuration.customFunctions.get(i);
399 if (!mConfiguration.customFunctions.contains(function)) {
400 nativeRegisterCustomFunction(mConnectionPtr, function);
1055 * This function is written so that it may be called by a thread that does not
1084 * This function is written so that it may be called by a thread that does not
123 nativeRegisterCustomFunction(int connectionPtr, SQLiteCustomFunction function) argument
H A DSQLiteDatabase.java831 * Registers a CustomFunction callback as a function that can be called from
834 * @param name the name of the sqlite3 function
835 * @param numArgs the number of arguments for the function
836 * @param function callback to call when the function is executed
839 public void addCustomFunction(String name, int numArgs, CustomFunction function) { argument
841 SQLiteCustomFunction wrapper = new SQLiteCustomFunction(name, numArgs, function);
2176 * A callback interface for a custom sqlite3 function.
2177 * This can be used to create a function that can be called from
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java58 * mass storage function is enabled
60 * adb function is enabled
62 * RNDIS ethernet function is enabled
64 * MTP function is enabled
66 * PTP function is enabled
68 * accessory function is enabled
70 * audio source function is enabled
143 * Name of the USB mass storage USB function.
151 * Name of the adb USB function.
159 * Name of the RNDIS ethernet USB function
403 propertyContainsFunction(String property, String function) argument
421 isFunctionEnabled(String function) argument
451 setCurrentFunction(String function, boolean makeDefault) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1183 private void throwEglException(String function) { argument
1184 throwEglException(function, mEgl.eglGetError());
1187 public static void throwEglException(String function, int error) { argument
1188 String message = formatEglError(function, error);
1196 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
1197 Log.w(tag, formatEglError(function, error));
1200 public static String formatEglError(String function, int error) { argument
1201 return function + " failed: " + EGLLogWrapper.getErrorString(error);
/frameworks/base/services/java/com/android/server/accessibility/
H A DAccessibilityManagerService.java2310 private void enforceCallingPermission(String permission, String function) { argument
2316 + " required to call " + function);
/frameworks/base/services/java/com/android/server/usb/
H A DUsbDeviceManager.java253 private static String addFunction(String functions, String function) { argument
255 return function;
257 if (!containsFunction(functions, function)) {
261 functions += function;
266 private static String removeFunction(String functions, String function) { argument
269 if (function.equals(split[i])) {
289 private static boolean containsFunction(String functions, String function) { argument
290 int index = functions.indexOf(function);
293 int charAfter = index + function.length();
449 // switching to default function
[all...]
H A DUsbService.java225 public void setCurrentFunction(String function, boolean makeDefault) { argument
228 mDeviceManager.setCurrentFunctions(function, makeDefault);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace.pb.h1388 // required .android.gltrace.GLMessage.Function function = 4 [default = invalid];
1392 inline ::android::gltrace::GLMessage_Function function() const;
1795 // required .android.gltrace.GLMessage.Function function = 4 [default = invalid];
1803 inline ::android::gltrace::GLMessage_Function GLMessage::function() const { function in class:android::gltrace::GLMessage
/frameworks/wilhelm/src/
H A Dtrace.c33 void slTraceEnterGlobal(const char *function) argument
36 SL_LOGD("Entering %s", function);
41 void slTraceLeaveGlobal(const char *function, SLresult result) argument
45 SL_LOGD("Leaving %s", function);
51 SL_LOGW("Leaving %s (%s)", function, str);
53 SL_LOGW("Leaving %s (0x%X)", function, result);
60 void slTraceEnterInterface(const char *function) argument
65 if (*function == 'I') {
66 ++function;
68 const char *underscore = function;
86 slTraceLeaveInterface(const char *function, SLresult result) argument
133 slTraceEnterInterfaceVoid(const char *function) argument
141 slTraceLeaveInterfaceVoid(const char *function) argument
[all...]

Completed in 614 milliseconds