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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/site_tests/platform_WarningCollector/
platform_WarningCollector.py 6 from autotest_lib.client.bin import test, utils namespace
17 utils.system("stop warn-collector")
18 utils.system("rm -rf /var/run/kwarn")
19 utils.system("start warn-collector")
20 utils.system("sleep 0.1")
23 utils.system("echo WARNING > %s" % (lkdtm))
25 utils.system("echo warning > /proc/breakme")
26 utils.system("sleep 0.1")
27 utils.system("test -f /var/run/kwarn/warning")
  /system/core/include/utils/
threads.h 28 #include <utils/AndroidThreads.h>
31 #include <utils/Condition.h>
32 #include <utils/Errors.h>
33 #include <utils/Mutex.h>
34 #include <utils/RWLock.h>
35 #include <utils/Thread.h>
  /external/autotest/client/tests/cpu_hotplug/
cpu_hotplug.py 2 from autotest_lib.client.bin import test, utils namespace
10 tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
11 utils.extract_tarball_to_dir(tarball, self.srcdir)
16 if utils.running_config():
17 utils.check_for_kernel_feature('HOTPLUG_CPU')
20 if utils.count_cpus() == 1:
25 utils.system('dmesg -c > /dev/null')
26 for cpu in utils.cpu_online_map():
28 utils.system('echo 0 > /sys/devices/system/cpu/cpu%s/online' % cpu, 1)
29 utils.system('dmesg -c'
    [all...]
  /external/autotest/client/deps/systemtap/
systemtap.py 5 from autotest_lib.client.bin import utils namespace
14 utils.configure('--with-elfutils=elfutils ' \
16 utils.make('-j %d' % utils.count_cpus())
17 utils.make('install')
22 utils.update_version(pwd+'/src', True, version, setup, pwd)
  /external/autotest/client/common_lib/hosts/
__init__.py 9 from autotest_lib.client.common_lib import utils namespace
12 Host = utils.import_site_class(
  /external/autotest/client/deps/pgpool/
pgpool.py 4 from autotest_lib.client.bin import utils namespace
13 utils.get_file('http://pgfoundry.org/frs/download.php/1083/pgpool-II-1.0.1.tar.gz', tarball)
14 utils.extract_tarball_to_dir(tarball, 'src')
18 utils.configure('--prefix=%s/pgpool --with-pgsql=%s/deps/pgsql/pgsql' \
20 utils.make('-j %d' % utils.count_cpus())
21 utils.make('install')
27 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
  /external/autotest/client/deps/pgsql/
pgsql.py 4 from autotest_lib.client.bin import utils namespace
11 utils.get_file('ftp://ftp.postgresql.org/pub/source/v8.3.1/postgresql-8.3.1.tar.bz2', tarball)
12 utils.extract_tarball_to_dir(tarball, 'src')
14 utils.configure('--without-readline --without-zlib --enable-debug --prefix=%s/pgsql' % topdir)
15 utils.make('-j %d' % utils.count_cpus())
16 utils.make('install')
22 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
  /frameworks/av/camera/aidl/android/hardware/camera2/utils/
SubmitInfo.aidl 17 package android.hardware.camera2.utils;
  /system/core/libutils/
Trace.cpp 17 #include <utils/misc.h>
18 #include <utils/Trace.h>
  /development/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/utils/
Constants.java 11 package android.support.v17.leanback.supportleanbackshowcase.utils;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SerializerMessages_en.java 21 package org.apache.xml.serializer.utils;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMOrder.java 21 package org.apache.xml.utils;
  /external/chromium-trace/catapult/devil/devil/utils/lazy/
__init__.py 5 from devil.utils.lazy.weak_constant import WeakConstant
  /frameworks/av/media/img_utils/src/
TiffEntryImpl.cpp 19 #include <utils/Vector.h>
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
StateChangeListener.java 17 package com.android.ex.camera2.utils;
  /packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/latin/utils/
WordInputEventForPersonalization.java 17 package com.android.inputmethod.latin.utils;
  /external/autotest/client/deps/libnet/
libnet.py 4 from autotest_lib.client.bin import utils namespace
11 utils.get_file('http://www.packetfactory.net/libnet/dist/libnet.tar.gz',
13 utils.extract_tarball_to_dir(tarball, 'src')
15 utils.configure ('--prefix=%s/libnet' % topdir)
16 utils.make()
17 utils.make('install')
23 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
  /external/autotest/client/site_tests/platform_TPMEvict/
platform_TPMEvict.py 5 from autotest_lib.client.bin import test, utils namespace
16 utils.system('p11_replay --inject --replay_wifi')
18 utils.system('p11_replay --inject')
19 utils.system('p11_replay --replay_wifi')
20 utils.system('p11_replay --cleanup')
  /external/autotest/client/tests/dbt2/
dbt2.py 2 from autotest_lib.client.bin import test, utils namespace
17 tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
18 utils.extract_tarball_to_dir(tarball, self.srcdir)
24 utils.system('cp -pR ' + self.srcdir + ' ' + self.srcdir + '.mysql')
26 utils.configure('--with-mysql=%s/deps/mysql/mysql' % self.autodir)
27 utils.make()
32 utils.system('cp -pR ' + self.srcdir + ' ' + self.srcdir + '.pgsql')
34 utils.configure('--with-postgresql=%s/deps/pgsql/pgsql' % self.autodir)
35 utils.make()
39 utils.system('ln -s %s %s'
    [all...]
  /external/autotest/client/deps/mysql/
mysql.py 4 from autotest_lib.client.bin import utils namespace
11 utils.get_file('http://mirror.x10.com/mirror/mysql/Downloads/MySQL-5.0/mysql-5.0.45.tar.gz', tarball)
12 utils.extract_tarball_to_dir(tarball, 'src')
14 utils.configure('--prefix=%s/mysql --enable-thread-safe-client' \
16 utils.make('-j %d' % utils.count_cpus())
17 utils.make('install')
30 utils.system('%s/mysql/bin/mysql_install_db' % topdir)
36 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
  /external/autotest/client/tests/libhugetlbfs/
libhugetlbfs.py 2 from autotest_lib.client.bin import utils, test namespace
13 utils.check_kernel_ver("2.6.16")
18 utils.write_one_line('/proc/sys/vm/nr_hugepages',
20 nr_hugepages = utils.read_one_line('/proc/sys/vm/nr_hugepages')
29 if not utils.file_contains_pattern('/proc/mounts', 'hugetlbfs'):
33 utils.system('mount -t hugetlbfs none %s' % dir)
39 tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
40 utils.extract_tarball_to_dir(tarball, self.srcdir)
43 utils.system('patch -p1 < ../elflink.patch')
47 utils.make(
    [all...]
  /external/autotest/client/deps/boottool/
boottool.py 4 from autotest_lib.client.bin import utils namespace
16 utils.extract_tarball_to_dir(tarball, srcdir)
18 utils.system('perl Makefile.PL PREFIX=' + topdir)
19 utils.make()
20 utils.make('install')
26 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
  /external/autotest/client/deps/dejagnu/
dejagnu.py 4 from autotest_lib.client.bin import utils namespace
10 utils.extract_tarball_to_dir(tarball, 'src')
12 utils.configure('--prefix=%s/dejagnu' % topdir)
13 utils.make()
14 utils.make('install')
21 utils.update_version(pwd+'/src', False, version, setup, tarball, pwd)
  /external/autotest/client/tests/fsfuzzer/
fsfuzzer.py 2 from autotest_lib.client.bin import test, utils namespace
14 tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
15 utils.extract_tarball_to_dir(tarball, self.srcdir)
17 utils.system('patch -p1 < ../makefile.patch')
18 utils.make()
23 utils.system(self.srcdir + '/run_test ' + args)
  /external/autotest/client/tests/interbench/
interbench.py 2 from autotest_lib.client.bin import test, utils namespace
14 tarball = utils.unmap_url(self.bindir, tarball, self.tmpdir)
15 utils.extract_tarball_to_dir(tarball, self.srcdir)
17 utils.system('patch -p1 < ../makefile.patch')
18 utils.make()
24 utils.system("%s/interbench -m 'run #%s' %s" % (self.srcdir,

Completed in 715 milliseconds

1 2 3 4 5 6 7 8 91011>>