HomeSort by relevance Sort by last modified time
    Searched defs:modules (Results 1 - 25 of 267) sorted by null

1 2 3 4 5 6 7 8 91011

  /device/linaro/bootloader/edk2/BaseTools/Tests/
CToolsTests.py 16 # Import Modules
23 modules = ( variable
29 suites = map(lambda module: module.TheTestSuite(), modules)
  /external/mesa3d/src/gallium/state_trackers/clover/api/
program.cpp 73 auto modules = map( local
92 std::transform(modules.begin(), modules.end(), status_ret,
96 modules.begin(), modules.end()))
100 modules.begin(), modules.end()))
107 modules.begin(), modules.end()));
  /external/syslinux/com32/hdt/
hdt-cli-kernel.c 47 more_printf("Kernel modules\n");
53 more_printf(" modules.pcimap and modules.alias files are missing\n");
95 char modules[MAX_PCI_CLASSES][256] = {{0}}; local
104 more_printf(" Missing modules.pcimap, we can't compute the list\n");
121 && (!strstr(modules[pci_device->class[2]], kernel_modules))) {
122 strncat(modules[pci_device->class[2]], kernel_modules,
132 more_printf("%s : %s\n", category_name[i], modules[i]);
138 .modules = NULL,
  /external/webrtc/talk/media/webrtc/
fakewebrtcvcmfactory.h 45 modules.push_back(module);
54 std::remove(modules.begin(), modules.end(), module);
57 std::vector<FakeWebRtcVideoCaptureModule*> modules; member in class:FakeWebRtcVcmFactory
  /build/make/core/tasks/
ide.mk 21 define filter-ide-modules
31 eclipse_project_modules := $(call filter-ide-modules,ECLIPSE,$(eclipse_project_goals))
  /external/autotest/client/tests/cgroup/
cgroup.py 18 modules = CgroupModules() variable in class:cgroup
31 if not self.modules.get_pwd(i):
54 logging.debug('Setting up cgroups modules')
60 if (self.modules.init(_modules) <= 0):
61 raise error.TestFail('Can\'t mount any cgroup modules')
69 self.modules.cleanup()
96 if item.initialize(self.modules):
343 if item.initialize(self.modules):
  /external/fonttools/MetaTools/
buildTableList.py 17 modules = [] variable
25 modules.append(name[:-3])
28 modules.sort()
39 for module in modules:
  /external/libdrm/tests/util/
kms.c 128 static const char * const modules[] = { variable
158 for (i = 0; i < ARRAY_SIZE(modules); i++) {
159 printf("trying to open device '%s'...", modules[i]);
161 fd = drmOpen(modules[i], device);
  /external/selinux/libsepol/tests/
test-linker.c 56 static policydb_t *modules[NUM_MODS]; variable
71 modules[i] = calloc(1, sizeof(*modules[i]));
72 if (!modules[i]) {
77 if (test_load_policy(modules[i], POLICY_MOD, mls, "test-linker", policies[i]))
82 if (link_modules(NULL, &linkedbase, modules, NUM_MODS, 0)) {
83 fprintf(stderr, "link modules failed\n");
88 fprintf(stderr, "link modules failed\n");
103 policydb_destroy(modules[i]);
104 free(modules[i])
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_mapping_libcdep.cc 76 ListOfModules modules; local
77 modules.init();
78 for (const LoadedModule &module : modules) {
  /external/deqp/scripts/
build_caselists.py 40 MODULES = [
46 Module("dEQP-VK", "../external/vulkancts/modules/vulkan", "deqp-vk"),
53 for module in MODULES:
67 return os.path.join(buildCfg.getBuildDir(), "modules")
70 modules = []
73 for module in MODULES:
76 modules.append(module)
78 return modules
135 "--modules",
136 dest="modules",
147 modules = None variable
150 modules = [] variable
158 modules = getBuiltModules(buildCfg) variable
    [all...]
  /external/google-breakpad/src/processor/
stackwalker.cc 70 const CodeModules* modules,
74 modules_(modules),
82 vector<const CodeModule*>* modules) {
90 for (iter = modules->begin(); iter != modules->end(); ++iter) {
101 modules->push_back(module);
195 const CodeModules* modules,
209 memory, modules, frame_symbolizer);
215 memory, modules, frame_symbolizer); local
221 memory, modules, frame_symbolizer)
    [all...]
stackwalker_address_list_unittest.cc 64 // Addresses and sizes of a couple dummy modules.
70 // A handful of addresses that lie within the modules above.
77 : // Give the two modules reasonable standard locations and names
81 // Create some modules with some stock debugging information.
82 modules.Add(&module1);
83 modules.Add(&module2);
85 // By default, none of the modules have symbol info; call
122 MockCodeModules modules; member in class:StackwalkerAddressListTest
130 &modules, &frame_symbolizer);
164 &modules, &frame_symbolizer)
    [all...]
  /external/kmod/testsuite/
delete_module.c 44 static struct mod *modules; variable in typeref:struct:mod
129 parse_retcodes(&modules, s);
131 for (mod = modules; mod != NULL; mod = mod->next) {
151 mod = find_module(modules, modname);
163 while (modules) {
164 struct mod *mod = modules->next;
165 free(modules);
166 modules = mod;
  /frameworks/av/soundtrigger/
ISoundTriggerHwService.cpp 53 virtual status_t listModules(struct sound_trigger_module_descriptor *modules,
56 if (numModules == NULL || (*numModules != 0 && modules == NULL)) {
61 unsigned int numModulesReq = (modules == NULL) ? 0 : *numModules;
74 reply.read(modules, numModulesReq * sizeof(struct sound_trigger_module_descriptor));
128 struct sound_trigger_module_descriptor *modules = local
131 if (modules == NULL) {
136 status_t status = listModules(modules, &numModules);
145 reply->write(modules,
148 free(modules);
  /libcore/luni/src/main/java/java/math/
Primality.java 90 int[] modules = new int[primes.length]; local
114 // To calculate modules: N mod p1, N mod p2, ... for first primes.
116 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
124 modules[i] = (modules[i] + gapSize) % primes[i];
125 j = (modules[i] == 0) ? 0 : (primes[i] - modules[i]);
  /external/compiler-rt/lib/stats/
stats.cc 30 InternalMmapVectorNoCtor<StatModule **> modules; member in namespace:__anon16109
88 modules.push_back(mod);
89 return modules.size() - 1;
96 WriteModuleReport(modules[index]);
97 modules[index] = 0;
104 for (StatModule **mod : modules) {
  /external/guice/core/test/com/google/inject/
ModulesTest.java 21 import com.google.inject.util.Modules;
33 Module combined = Modules.combine(newModule(1), newModule(2L), newModule((short) 3));
41 Iterable<Module> modules = Arrays.asList(newModule(1), newModule(2L), newModule((short) 3)); local
42 Injector injector = Guice.createInjector(Modules.combine(modules));
49 * The module returned by Modules.combine shouldn't show up in binder sources.
54 final Module combined1 = Modules.combine(m1, m2);
60 final Module combined2 = Modules.combine(skipSourcesModule);
  /external/webrtc/webrtc/video/
payload_router_unittest.cc 17 #include "webrtc/modules/rtp_rtcp/include/rtp_rtcp.h"
18 #include "webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h"
38 std::list<RtpRtcp*> modules(1, &rtp);
40 payload_router_->SetSendingRtpModules(modules);
73 modules.clear();
74 payload_router_->SetSendingRtpModules(modules);
85 std::list<RtpRtcp*> modules; local
86 modules.push_back(&rtp_1);
87 modules.push_back(&rtp_2);
89 payload_router_->SetSendingRtpModules(modules);
150 std::list<RtpRtcp*> modules; local
178 std::list<RtpRtcp*> modules; local
    [all...]
  /cts/common/util/src/com/android/compatibility/common/util/
LightInvocationResult.java 28 * This implementation stores only enough ModuleResult information to return empty modules
77 List<IModuleResult> modules = new ArrayList<IModuleResult>(); local
79 modules.add(new ModuleResult(id));
81 return modules; // return empty modules
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /build/make/core/
main.mk 506 # Change CUSTOM_MODULES to include only modules that were
508 # modules as a side-effect. Do this after including ONE_SHOT_MAKEFILE
509 # so that the modules will be installed in the same place they
511 CUSTOM_MODULES := $(sort $(call get-tagged-modules,$(ALL_MODULE_TAGS)))
556 # Bring in the PDK platform.zip modules.
569 # Enforce to generate all RRO packages for modules having resource
578 # just bare module names. Leave unknown modules alone in case
587 # Define dependencies for modules that require other modules.
593 # BUG: the system image won't know to depend on modules that ar
    [all...]
  /external/guice/core/src/com/google/inject/spi/
Elements.java 84 * Records the elements executed by {@code modules}.
86 public static List<Element> getElements(Module... modules) {
87 return getElements(Stage.DEVELOPMENT, Arrays.asList(modules));
91 * Records the elements executed by {@code modules}.
93 public static List<Element> getElements(Stage stage, Module... modules) {
94 return getElements(stage, Arrays.asList(modules));
98 * Records the elements executed by {@code modules}.
100 public static List<Element> getElements(Iterable<? extends Module> modules) {
101 return getElements(Stage.DEVELOPMENT, modules);
105 * Records the elements executed by {@code modules}
162 private final Map<Module, ModuleInfo> modules; field in class:Elements.RecordingBinder
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_importhooks.py 38 modules = { variable in class:TestImporter
63 if fullname in self.modules:
69 ispkg, code = self.modules[fullname]
70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
90 can be sure the modules you specified can't be imported, even
146 self.modules_before = sys.modules.copy()
153 sys.modules.clear()
154 sys.modules.update(self.modules_before)
178 TestImporter.modules['reloadmodule'] = (False, test_co)
182 TestImporter.modules['reloadmodule'] = (False, reload_co)
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
profile.py 23 modules = {} variable
29 print "-s,--symbols: Location of the symbols and modules"
34 def get_module_from_addr(modules, addr):
35 for key,value in modules.items():
65 module_name = get_module_from_addr(modules, addr)
174 modules[module_name] = {}
180 modules[module_name]['start'] = get_address_from_string(line.split()[0])
181 modules[module_name]['end'] = get_address_from_string(line.split()[2])
185 modules[module_name]['start'] = get_address_from_string(line.split()[0])
186 modules[module_name]['end'] = get_address_from_string(line.split()[2]
    [all...]

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011