Searched refs:function (Results 1 - 25 of 119) sorted by relevance

12345

/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...]
H A Dtrace.h49 extern void slTraceEnterGlobal(const char *function);
50 extern void slTraceLeaveGlobal(const char *function, SLresult result);
51 extern void slTraceEnterInterface(const char *function);
52 extern void slTraceLeaveInterface(const char *function, SLresult result);
53 extern void slTraceEnterInterfaceVoid(const char *function);
54 extern void slTraceLeaveInterfaceVoid(const char *function);
/frameworks/native/vulkan/include/vulkan/
H A Dvk_layer_interface.h52 VkLayerFunction function; member in struct:__anon1597
68 VkLayerFunction function; member in struct:__anon1599
/frameworks/compile/slang/
H A Dslang_rs_special_kernel_param.h35 std::function<std::string ()> DiagnosticDescription,
/frameworks/base/core/java/android/hardware/usb/
H A DUsbManager.java63 * adb function is enabled
65 * RNDIS ethernet function is enabled
67 * MTP function is enabled
69 * PTP function is enabled
71 * accessory function is enabled
73 * audio source function is enabled
75 * MIDI function is enabled
78 * USB is not configued, MTP function is enabled, and all the other functions are disabled.
184 * A placeholder indicating that no USB function is being specified.
185 * Used to distinguish between selecting no function v
511 isFunctionEnabled(String function) argument
541 setCurrentFunction(String function) argument
635 addFunction(String functions, String function) argument
649 removeFunction(String functions, String function) argument
673 containsFunction(String functions, String function) argument
[all...]
H A DIUsbManager.aidl87 /* Returns true if the specified USB function is enabled. */
88 boolean isFunctionEnabled(String function);
90 /* Sets the current USB function. */
91 void setCurrentFunction(String function);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dfastcodemb.h20 /* Description: This file contains structure and function prototypes used
21 in FastCodeMB() function. When it is decided to use FastCodeMB
52 void initCodeMB(approxDCT *function, Int QP);
53 PV_STATUS CodeMB_H263(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[], Int offset);
54 PV_STATUS CodeMB_MPEG(VideoEncData *video, approxDCT *function, Int QP, Int ncoefblck[], Int offset);
60 Int AppVCA1_dct(Int block[], Int out[ ], approxDCT *function);
61 Int AppVCA2_dct(Int block[], Int out[ ], approxDCT *function);
62 Int AppVCA3_dct(Int block[], Int out[ ], approxDCT *function);
63 Int AppVCA4_dct(Int block[], Int out[ ], approxDCT *function);
64 Int AppVCA5_dct(Int block[], Int out[ ], approxDCT *function);
[all...]
/frameworks/native/cmds/installd/
H A Dfile_parsing.h27 bool ParseFile(const std::string& strFile, std::function<bool (const std::string&)> parse) {
/frameworks/rs/api/
H A DGenerateHeaderFiles.cpp202 Function* function = spec.getFunction(); local
203 writeVersionGuardStart(file, spec.getVersionInfo(), function->getFinalVersion());
222 function->getDeprecatedApiLevel(), function->getDeprecatedMessage());
225 // Write the function name.
282 static void writeFunctionComment(GeneratedFile* file, const Function& function) { argument
284 writeComment(file, function.getName(), function.getSummary(), function.getDescription(),
285 function
371 Function* function = spec->getFunction(); local
[all...]
H A DGenerateStubsWhiteList.cpp188 * This function is recursive because compression is possible at each level of the definition.
192 * This function mangles correctly the types currently used by RenderScript. It does
193 * not currently mangle more complicated types like function pointers, namespaces,
322 /* Add the mangling for this permutation of the function. apiLevel and intSize is used
325 static bool addFunctionManglingToSet(const Function& function, argument
345 /* Add to the set the mangling of each function prototype that can be generated from this
350 static bool addManglingsForSpecification(const Function& function, argument
353 // If the function is inlined, we won't generate an unresolved external for that.
372 if (!addFunctionManglingToSet(function, *permutation, overloadable, apiLevel, 32,
378 if (!addFunctionManglingToSet(function, *permutatio
397 const Function* function = f.second; local
440 generateTestCall(GeneratedFile* file, ostringstream* calls, unsigned int* variableNumber, const Function& function, const FunctionPermutation& permutation) argument
507 const Function* function = f.second; local
[all...]
H A DGenerateDocumentation.cpp152 static bool getUnifiedFunctionPrototypes(Function* function, argument
154 for (auto f : function->getSpecifications()) {
548 static bool writeDetailedFunction(GeneratedFile* file, Function* function) { argument
549 if (function->hidden()) {
552 const string& name = function->getName();
558 *file << " <span class='normal'>: " << function->getSummary() << "</span>\n";
563 if (!getUnifiedFunctionPrototypes(function, &entries)) {
578 if (function->someParametersAreDocumented()) {
582 for (ParameterEntry* p : function->getParameters()) {
589 string ret = function
[all...]
H A DGenerateTestFiles.cpp48 // Returns true if any permutation of the function have tests to b
49 static bool needTestFiles(const Function& function, unsigned int versionOfTestFiles) { argument
50 for (auto spec : function.getSpecifications()) {
58 /* One instance of this class is generated for each permutation of a function for which
81 /* Shortcuts to the return parameter and the first input parameter of the function
126 /* Generate the code that verify the results for a RenderScript function where a vector
134 // Generate the method header of the verify function.
171 // Write the script test function for this permutation.
874 * For example, if we have a function that takes three arguments, two for input
913 // Write the function heade
998 startJavaFile(GeneratedFile* file, const Function& function, const string& directory, const string& testName, const string& relaxedTestName) argument
1035 finishJavaFile(GeneratedFile* file, const Function& function, const vector<string>& javaCheckMethods) argument
1048 startRsFile(GeneratedFile* file, const Function& function, const string& directory, const string& testName) argument
1062 writeRelaxedRsFile(const Function& function, const string& directory, const string& testName, const string& relaxedTestName) argument
1081 writeTestFilesForFunction(const Function& function, const string& directory, unsigned int versionOfTestFiles) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dasm_common.S29 .macro function name, export=0
33 .type \name, %function
H A Dh264bsdCountLeadingZeros.S42 function h264bsdCountLeadingZeros, export=1 label
/frameworks/webview/chromium/plat_support/
H A Ddraw_sw.h50 // Method that returns the current Skia function.
54 typedef bool (AwIsSkiaVersionCompatibleFunction)(SkiaVersionFunction function);
/frameworks/base/tools/aapt2/xml/
H A DXmlActionExecutor.h51 using ActionFuncWithDiag = std::function<bool(Element*, SourcePathDiagnostics*)>;
52 using ActionFunc = std::function<bool(Element*)>;
/frameworks/native/opengl/libagl/
H A Dfixed_asm.S23 .type gglFloatToFixed, %function
25 .type gglFloatToFixedFast, %function
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java288 private void throwEglException(String function) { argument
289 throwEglException(function, mEgl.eglGetError());
292 public static void throwEglException(String function, int error) { argument
293 String message = formatEglError(function, error);
297 public static void logEglErrorAsWarning(String tag, String function, int error) { argument
298 Log.w(tag, formatEglError(function, error));
301 public static String formatEglError(String function, int error) { argument
302 return function + " failed: " + error;
/frameworks/base/tools/aapt2/
H A DResourceUtils.h146 * The callback function onCreateReference is called when the parsed item is a
151 std::function<void(const ResourceName&)> onCreateReference = {});
155 std::function<void(const ResourceName&)> onCreateReference = {});
H A DFlags.h54 std::function<bool(const StringPiece& value)> action;
/frameworks/base/libs/hwui/tests/common/
H A DTestUtils.h151 std::function<void(CanvasType& canvas)> canvasCallback) {
158 std::function<void(RenderProperties& props, TestCanvas& canvas)> setup) {
178 std::function<void(TestCanvas&)> contentCallback) {
201 typedef std::function<void(renderthread::RenderThread& thread)> RtCallback;
/frameworks/base/tools/aapt2/link/
H A DTableMerger.h98 using FileMergeCallback = std::function<bool(const ResourceNameRef&,
/frameworks/native/opengl/libagl/arch-mips/
H A Dfixed_asm.S29 .type gglFloatToFixed, @function
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbService.java284 public boolean isFunctionEnabled(String function) { argument
286 return mDeviceManager != null && mDeviceManager.isFunctionEnabled(function);
290 public void setCurrentFunction(String function) { argument
293 if (!isSupportedCurrentFunction(function)) {
294 Slog.w(TAG, "Caller of setCurrentFunction() requested unsupported USB function: "
295 + function);
296 function = UsbManager.USB_FUNCTION_NONE;
300 mDeviceManager.setCurrentFunctions(function);
306 private static boolean isSupportedCurrentFunction(String function) { argument
307 if (function
[all...]
/frameworks/opt/net/wifi/service/
H A DAndroid.mk26 LOCAL_CFLAGS += -Wall -Werror -Wextra -Wno-unused-parameter -Wno-unused-function \
47 LOCAL_CFLAGS += -Wall -Werror -Wextra -Wno-unused-parameter -Wno-unused-function \
85 LOCAL_CFLAGS += -Wall -Werror -Wextra -Wno-unused-parameter -Wno-unused-function \

Completed in 643 milliseconds

12345