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

1 2 3

  /external/webkit/WebKit/chromium/src/js/
ProfilerAgent.js 44 * Active profiler modules flags.
161 * @param {number} modules List of modules to enable.
163 devtools.ProfilerAgent.prototype.startProfiling = function(modules)
166 "modules": modules,
170 if (modules & devtools.ProfilerAgent.ProfilerModules.PROFILER_MODULE_HEAP_SNAPSHOT) {
171 // Active modules will not change, instead, a snapshot will be logged.
180 devtools.ProfilerAgent.prototype.stopProfiling = function(modules)
183 "modules": modules
    [all...]
DevToolsHostStub.js 115 ProfilerStubHelper.prototype.StopProfiling = function(modules)
117 this.activeProfilerModules_ &= ~modules;
121 ProfilerStubHelper.prototype.StartProfiling = function(modules)
124 if (modules & profModules.PROFILER_MODULE_HEAP_SNAPSHOT) {
125 if (modules & profModules.PROFILER_MODULE_HEAP_STATS) {
139 if (modules & profModules.PROFILER_MODULE_CPU)
141 this.activeProfilerModules_ |= modules;
258 ProfilerStubHelper.GetInstance().StartProfiling(parseInt(cmdObj.arguments.modules));
260 ProfilerStubHelper.GetInstance().StopProfiling(parseInt(cmdObj.arguments.modules));
  /libcore/luni/src/main/java/java/math/
Primality.java 96 int[] modules = new int[primes.length]; local
120 // To calculate modules: N mod p1, N mod p2, ... for first primes.
122 modules[i] = BigInt.remainderByPositiveInt(startPoint, primes[i]) - gapSize;
130 modules[i] = (modules[i] + gapSize) % primes[i];
131 j = (modules[i] == 0) ? 0 : (primes[i] - modules[i]);
  /external/webkit/LayoutTests/http/conf/
apache2-debian-httpd.conf 175 # built-in (statically linked and thus always available) modules in your httpd
178 # Note: The order in which modules are loaded is important. Don't change
183 #LoadModule vhost_alias_module /usr/lib/apache2/modules/mod_vhost_alias.so
184 #LoadModule env_module /usr/lib/apache2/modules/mod_env.so
185 #LoadModule log_config_module /usr/lib/apache2/modules/mod_log_config.so
186 #LoadModule mime_magic_module /usr/lib/apache2/modules/mod_mime_magic.so
187 LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so
188 LoadModule negotiation_module /usr/lib/apache2/modules/mod_negotiation.so
189 #LoadModule status_module /usr/lib/apache2/modules/mod_status.so
190 #LoadModule info_module /usr/lib/apache2/modules/mod_info.s
    [all...]
fedora-httpd.conf 43 # finding out what major optional modules you are running
148 # Statically compiled modules (those listed by `httpd -l') do not need
152 # LoadModule foo_module modules/mod_foo.so
154 #LoadModule auth_basic_module modules/mod_auth_basic.so
155 #LoadModule auth_digest_module modules/mod_auth_digest.so
156 #LoadModule authn_file_module modules/mod_authn_file.so
157 #LoadModule authn_alias_module modules/mod_authn_alias.so
158 #LoadModule authn_anon_module modules/mod_authn_anon.so
159 #LoadModule authn_dbm_module modules/mod_authn_dbm.so
160 #LoadModule authn_default_module modules/mod_authn_default.s
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/port/
lighttpd.conf 2 server.modules = ( "mod_accesslog",
  /prebuilt/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /external/bluetooth/glib/gio/
giomodule.c 40 * @short_description: Loadable GIO Modules
44 * modules. This is used internally to make GIO extensible, but can also
55 * #GIOExtensionPoint provides a mechanism for modules to extend the
232 * @dirname: pathname for a directory containing modules to load.
234 * Loads all the modules in the specified directory.
237 * All the modules are loaded into memory, if you want to
239 * g_type_module_unuse() on all the modules. Free the list
247 GList *modules; local
256 modules = NULL;
277 modules = g_list_prepend (modules, module)
339 GList *modules, *l; local
    [all...]
  /build/core/tasks/
ide.mk 21 define filter-ide-modules
31 eclipse_project_modules := $(call filter-ide-modules,ECLIPSE,$(eclipse_project_goals))
  /hardware/broadcom/wlan/bcm4329/src/bcmsdio/linux/
Makefile 13 # permission to link this software with independent modules, and to copy and
33 ifneq ($(wildcard /lib/modules/$(LINUXVER)/build/include/linux/version.h),)
34 LINUXDIR := /lib/modules/$(LINUXVER)/build
109 MODULES := bcmsdh_driver.o
114 KMODULES:=$(MODULES)
155 $(MAKE) -C $(OBJDIR) -f ../Makefile SRCBASE=$(SRCBASE) modules
169 modules: $(OFILES)
171 $(MAKE) -C $(LINUXDIR) M=$(shell pwd) $(if $(VERBOSE),V=1) modules
173 modules: $(MODULES)
    [all...]
  /system/bluetooth/data/
blacklist.conf 2 // the modules that use this file (listed below):
  /external/oprofile/daemon/
opd_kernel.c 31 static LIST_HEAD(modules);
39 /* vmlinux is *not* on the list of modules */
64 /* xen is *not* on the list of modules */
102 list_add(&image->list, &modules);
118 list_for_each_safe(pos, pos2, &modules) {
125 list_init(&modules);
159 fp = op_try_open_file("/proc/modules", "r");
162 printf("oprofiled: /proc/modules not readable, "
182 printf("bad /proc/modules entry: %s\n", line);
219 list_for_each(pos, &modules) {
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/linux/
Makefile 13 # permission to link this software with independent modules, and to copy and
33 ifneq ($(wildcard /lib/modules/$(LINUXVER)/build/include/linux/version.h),)
34 LINUXDIR := /lib/modules/$(LINUXVER)/build
283 MODULES := dhd.o
291 KMODULES:=$(MODULES)
355 $(MAKE) -C $(OBJDIR) -f $(SRCBASE)/dhd/linux/Makefile SRCBASE=$(SRCBASE) modules
369 modules: $(OFILES)
371 $(MAKE) -C $(LINUXDIR) M=$(shell pwd) $(if $(VERBOSE),V=1) modules
373 modules: $(MODULES)
    [all...]
  /hardware/libhardware/
Android.mk 35 modules/gralloc \
  /external/bluetooth/glib/gmodule/
gmodule-win32.c 167 HMODULE *modules; local
189 modules = g_malloc (size);
191 if (!(*pfnEnumProcessModules) (GetCurrentProcess (), modules,
195 g_free (modules);
201 if ((p = GetProcAddress (modules[i], symbol_name)) != NULL)
204 g_free (modules);
gmodule.c 51 /* We maintain a list of modules, so we can reference count them.
53 * modules e.g. the shl_* implementation of HP-UX
92 static GModule *modules = NULL; variable
109 for (module = modules; module; module = module->next)
125 for (module = modules; module; module = module->next)
163 #define SUPPORT_OR_RETURN(rv) { g_module_set_error ("dynamic modules are " \
316 { "resident-modules", G_MODULE_DEBUG_RESIDENT_MODULES },
317 { "bind-now-modules", G_MODULE_DEBUG_BIND_NOW_MODULES }
481 module->next = modules;
482 modules = module
    [all...]
  /ndk/build/core/
definitions.mk 165 # Modules database
167 # The following declarations are used to manage the list of modules
171 # We use __ndk_modules to hold the list of all modules corresponding
178 # depends -> list of other modules this module depends on
193 # Note that some modules are never installed (e.g. static libraries).
200 modules-LOCALS := \
227 modules-LOCALS += MAKEFILE
230 modules-LOCALS += LDFLAGS
234 modules-LOCALS += OBJECTS
239 modules-LOCALS += BUILT_MODUL
    [all...]
setup-toolchain.mk 139 $(call modules-clear)
149 # recompute all dependencies between modules
150 $(call modules-compute-dependencies)
154 $(call modules-dump-database)
157 # now, really build the modules, the second pass allows one to deal
167 # will build all modules that were listed from the top-level Android.mk
170 WANTED_MODULES := $(call modules-get-top-list)
  /external/webkit/WebKitTools/Scripts/webkitpy/
changelogs_unittest.py 59 * Scripts/modules/cpp_style.py:
64 * Scripts/modules/cpp_style_unittest.py: Added unit tests.
73 * Scripts/modules/scm.py:
  /build/core/
package.mk 43 $(error $(LOCAL_PATH): Package modules must define LOCAL_PACKAGE_NAME)
47 $(error $(LOCAL_PATH): Package modules may not define LOCAL_MODULE_SUFFIX)
52 $(error $(LOCAL_PATH): Package modules may not define LOCAL_MODULE)
58 $(error $(LOCAL_PATH): Package modules may not set LOCAL_JAVA_RESOURCE_DIRS)
61 $(error $(LOCAL_PATH): Package modules may not set LOCAL_JAVA_RESOURCE_FILES)
69 $(error $(LOCAL_PATH): Package modules may not set LOCAL_MODULE_CLASS)
239 # Other modules should depend on the BUILT module if
  /external/clearsilver/python/examples/base/
who_calls.py 102 sys.modules
104 for modname,m in sys.modules.items():
  /external/protobuf/python/
setup.py 55 if 'google' in sys.modules:
56 del sys.modules['google']
105 # Must list modules explicitly so that we don't install tests.
ez_setup.py 92 was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules
113 del pkg_resources, sys.modules['pkg_resources'] # reload ok
257 srcfile = inspect.getsourcefile(sys.modules[__name__])
  /frameworks/base/services/surfaceflinger/
Android.mk 51 LOCAL_C_INCLUDES += hardware/libhardware/modules/gralloc
  /hardware/msm7k/libcopybit/
Android.mk 39 LOCAL_C_INCLUDES += hardware/libhardware/modules/gralloc

Completed in 349 milliseconds

1 2 3