HomeSort by relevance Sort by last modified time
    Searched refs:module (Results 26 - 50 of 4067) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/bt/btcore/include/
hal_util.h 23 // the hw_get_module routine with the Bluetooth stack module id.
24 int hal_util_load_bt_library(const struct hw_module_t** module);
  /prebuilts/misc/common/swig/include/2.0.11/
runtime.swg 14 swig_module_info *module = SWIG_GetModule(clientdata);
15 return SWIG_TypeQueryModule(module, module, name);
20 swig_module_info *module = SWIG_GetModule(clientdata);
21 return SWIG_MangledTypeQueryModule(module, module, name);
28 swig_module_info *module = SWIG_GetModule(NULL);
29 return SWIG_TypeQueryModule(module, module, name);
34 swig_module_info *module = SWIG_GetModule(NULL)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
module-check.s 1 .module mips1
2 .module fp=64
3 .module mips32r2
module-set-mfpxx.s 1 .module mips32r2
2 .module fp=xx
3 .module doublefloat
4 .module hardfloat
5 .module oddspreg
  /external/autotest/client/site_tests/kernel_AsyncDriverProbe/
kernel_AsyncDriverProbe.py 15 def module_loaded(self, module):
17 Detect if the given module is already loaded in the kernel.
19 @param module: name of module to check
21 module = module.replace('-', '_')
22 match = "%s " % (module)
28 def rmmod(self, module):
30 Unload a module if it is already loaded in the kernel.
32 @param module: name of module to unloa
    [all...]
  /hardware/intel/common/wrs_omxil_core/utils/src/
module.c 2 * module.c, dynamic module interface
23 #include <module.h>
25 #define LOG_TAG "module"
28 static struct module *g_module_head;
39 struct module *m; \
49 static struct module *module_find_with_name(struct module *head,
52 struct module *module; local
65 struct module *module; local
    [all...]
  /hardware/libhardware/include/hardware/
boot_control.h 27 * The id of this module
46 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
48 * followed by module specific information.
57 void (*init)(struct boot_control_module *module);
64 unsigned (*getNumberSlots)(struct boot_control_module *module);
76 unsigned (*getCurrentSlot)(struct boot_control_module *module);
84 int (*markBootSuccessful)(struct boot_control_module *module);
93 int (*setActiveBootSlot)(struct boot_control_module *module, unsigned slot);
101 int (*setSlotAsUnbootable)(struct boot_control_module *module, unsigned slot);
110 int (*isSlotBootable)(struct boot_control_module *module, unsigned slot)
    [all...]
  /external/freetype/src/pshinter/
pshmod.c 5 /* FreeType PostScript hinter module implementation (body). */
26 /* the Postscript Hinter module structure */
39 /* finalize module */
41 ps_hinter_done( PS_Hinter_Module module )
43 module->t1_funcs.hints = NULL;
44 module->t2_funcs.hints = NULL;
46 ps_hints_done( &module->ps_hints );
50 /* initialize module, create hints recorder and the interface */
52 ps_hinter_init( PS_Hinter_Module module )
54 FT_Memory memory = module->root.memory
    [all...]
  /external/pdfium/third_party/freetype/src/pshinter/
pshmod.c 5 /* FreeType PostScript hinter module implementation (body). */
26 /* the Postscript Hinter module structure */
39 /* finalize module */
41 ps_hinter_done( PS_Hinter_Module module )
43 module->t1_funcs.hints = NULL;
44 module->t2_funcs.hints = NULL;
46 ps_hints_done( &module->ps_hints );
50 /* initialize module, create hints recorder and the interface */
52 ps_hinter_init( PS_Hinter_Module module )
54 FT_Memory memory = module->root.memory
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bisect.py 7 # and the Python implementation of the module.
15 # Now we can import the module and get the pure Python implementation.
22 # This is now the module with the C implementation.
27 module = None variable in class:TestBisect
31 (self.module.bisect_right, [], 1, 0),
32 (self.module.bisect_right, [1], 0, 0),
33 (self.module.bisect_right, [1], 1, 1),
34 (self.module.bisect_right, [1], 2, 1),
35 (self.module.bisect_right, [1, 1], 0, 0),
36 (self.module.bisect_right, [1, 1], 1, 2),
174 module = py_bisect variable in class:TestBisectPython
177 module = c_bisect variable in class:TestBisectC
182 module = None variable in class:TestInsort
211 module = py_bisect variable in class:TestInsortPython
214 module = c_bisect variable in class:TestInsortC
235 module = None variable in class:TestErrorHandling
264 module = py_bisect variable in class:TestErrorHandlingPython
267 module = c_bisect variable in class:TestErrorHandlingC
    [all...]
  /external/selinux/libsepol/src/
module_internal.h 1 #include <sepol/module.h>
  /external/selinux/libsepol/tests/policies/test-deps/
modreq-attr-global.conf 0 module modreq_attr_global 1.0;
  /external/selinux/libsepol/tests/policies/test-expander/
alias-module.conf 0 module my_module 1.0;
user-module.conf 0 module my_module 1.0;
  /system/bt/btcore/src/
module.cc 28 #include "btcore/include/module.h"
45 static module_state_t get_module_state(const module_t* module);
46 static void set_module_state(const module_t* module, module_state_t state);
55 module_t* module = (module_t*)dlsym(RTLD_DEFAULT, name); local
56 CHECK(module);
57 return module;
60 bool module_init(const module_t* module) {
61 CHECK(module != NULL);
62 CHECK(get_module_state(module) == MODULE_STATE_NONE);
64 if (!call_lifecycle_function(module->init))
164 const module_t* module; member in struct:__anon105870
    [all...]
  /external/autotest/client/site_tests/security_ModuleLocking/
security_ModuleLocking.py 12 Handle examining the system for specific module loading capabilities.
44 def module_loaded(self, module):
46 Detect if the given module is already loaded in the kernel.
48 @param module: name of module to check
50 module = module.replace('-', '_')
51 match = "%s " % (module)
57 def rmmod(self, module):
59 Unload a module if it is already loaded in the kernel
    [all...]
  /external/llvm/test/MC/Mips/
module-directive-bad.s 5 .module fp=64
6 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
9 .module fp=32
10 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
13 .module fp=64
14 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any code
17 .module fp=32
18 # CHECK-NOT: :[[@LINE-1]]:13: error: .module directive must appear before any code
21 .module fp=64
22 # CHECK: :[[@LINE-1]]:13: error: .module directive must appear before any cod
    [all...]
  /build/make/core/
host_prebuilt.mk 17 $(call record-module-type,HOST_PREBUILT)
  /device/linaro/hikey/gralloc/
framebuffer_device.h 22 int framebuffer_device_open(hw_module_t const *module, const char *name, hw_device_t **device);
24 // Initialize the framebuffer (must keep module lock before calling
25 int init_frame_buffer_locked(struct private_module_t *module);
  /external/ltp/testscripts/
load_stress_all_kernel_modules.sh 30 for module in `modprobe -l | tr '\n' ' '`
32 insert_module=`basename $module .ko`
  /external/protobuf/ruby/lib/google/protobuf/
message_exts.rb 31 module Google
32 module Protobuf
33 module MessageExts
40 module ClassMethods
  /external/swiftshader/src/Common/
GrallocAndroid.cpp 27 const hw_module_t *module = nullptr; local
28 hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
30 if(!module)
35 m_module = reinterpret_cast<const gralloc_module_t*>(module);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wrl.h 12 #include <wrl/module.h>
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
passes.cpp 32 bool StripDebugInfoPass::Process(ir::Module* module) {
33 bool modified = !module->debugs().empty();
34 module->debugs().clear();
36 module->ForEachInst([&modified](ir::Instruction* inst) {
  /bionic/tests/libs/
Android.build.testlib.internal.mk 19 ifeq ($($(module)_relative_install_path),)
20 $(module)_install_to_native_tests_dir := bionic-loader-test-libs
22 $(module)_install_to_native_tests_dir := bionic-loader-test-libs/$($(module)_relative_install_path)
25 $(module)_ldflags += -Wl,--rpath,\$${ORIGIN} -Wl,--enable-new-dtags

Completed in 865 milliseconds

12 3 4 5 6 7 8 91011>>