Searched refs:run (Results 1 - 25 of 52) sorted by relevance

123

/system/core/run-as/
H A DAndroid.mk5 LOCAL_MODULE := run-as
7 LOCAL_SRC_FILES := run-as.cpp
/system/tools/aidl/tests/
H A Dintegration-test.py65 verbose: True iff we should print out ADB commands we run.
70 def run(self, command, background=False, ignore_status=False): member in class:AdbHost
74 command: string containing a shell command to run.
75 background: True iff we should run this command in the background.
99 result = self.run('source /system/etc/mkshrc && mktemp')
106 command: string containing command to run
131 host: AdbHost object to run tests on
139 host.run('rm -f %s' % JAVA_LOG_FILE, ignore_status=True)
140 host.run('pkill %s' % NATIVE_TEST_SERVICE, ignore_status=True)
143 host.run(NATIVE_TEST_SERVIC
[all...]
/system/chre/platform/linux/
H A Dinit.cc51 eventLoop.run();
/system/vold/
H A DMoveTask.h40 void run();
H A DTrimTask.h46 void run();
H A DBenchmark.cpp104 nsecs_t run = systemTime(SYSTEM_TIME_BOOTTIME); local
122 nsecs_t run_d = run - drop;
123 nsecs_t destroy_d = destroy - run;
127 LOG(INFO) << "run took " << nanoseconds_to_milliseconds(run_d) << "ms";
/system/security/keystore/tests/
H A DMakefile2 # This makefile builds local unit tests that run locally on the development machine. Note
6 # The same unit tests are also built by Android.mk to run on the target device. The tests
58 # This list of binaries determes what gets built and run. Add each new test binary here.
62 .PHONY: coverage memcheck massif clean run
64 %.run: %
68 run: $(BINARIES:=.run)
83 coverage.info: run
120 $(BINARIES:=.run) $(BINARIES:=.memcheck) $(BINARIES:=.massif) \
/system/core/healthd/
H A Danimation.h57 bool run; member in struct:android::animation
/system/extras/tests/memtest/
H A Dbandwidth.cpp177 volatile bool *run; member in struct:__anon1759
193 // Spinloop waiting for the run variable to get set to true.
194 while (!*arg->run) {
198 for (int run = 1; ; run++) {
199 arg->bench->run();
200 if (!*arg->run) {
205 avg_mb = (avg_mb/run) * (run-1) + arg->bench->mb_per_sec()/run;
260 volatile bool run = false; local
[all...]
/system/netd/server/
H A DDnsProxyListener.h65 void run();
98 void run();
130 void run();
/system/update_engine/payload_generator/
H A Dpayload_generation_config_unittest.cc36 EXPECT_EQ(true, image_config.partitions[0].postinstall.run);
H A Dpayload_generation_config.h39 // must be run to finalize the update process.
40 bool run = false; member in struct:chromeos_update_engine::PostInstallConfig
46 // The filesystem type used to mount the partition in order to run the
H A Dpayload_generation_config.cc32 return !run && path.empty() && filesystem_type.empty() && !optional;
96 part.postinstall.run = true;
/system/core/trusty/keymaster/
H A DMakefile7 # To build and run these tests, one pre-requisite must be manually installed: BoringSSL.
20 # Then return to $ANDROID_BUILD_TOP/system/keymaster and run "make".
109 .PHONY: coverage memcheck massif clean run
111 %.run: %
115 run: $(BINARIES:=.run)
120 coverage.info: run
193 $(BINARIES:=.run) $(BINARIES:=.memcheck) $(BINARIES:=.massif) \
/system/extras/simpleperf/scripts/
H A Dbinary_cache_builder.py206 if self.adb.run(['pull', device_path, host_path]):
211 if (self.adb.run(['shell', 'cp', device_path, '/data/local/tmp']) and
212 self.adb.run(['pull', '/data/local/tmp/' + filename, host_path])):
213 self.adb.run(['shell', 'rm', '/data/local/tmp/' + filename])
224 self.adb.run(['shell', '"echo 0 >/proc/sys/kernel/kptr_restrict"'])
225 self.adb.run(['pull', '/proc/kallsyms', file])
H A Dutils.py87 def run(self, adb_args): member in class:AdbHelper
93 log_debug('run adb cmd: %s' % adb_args)
99 log_debug('run adb cmd: %s [result %s]' % (adb_args, result))
110 log_fatal('run "adb %s" failed' % adb_args)
123 self.run(['root'])
137 return self.run(['shell', 'setprop', name, value])
/system/security/keystore/
H A Dtest-keystore44 function run() { function
53 run adb shell su $user keystore_cli "$@"
57 run adb shell ls -al /data/misc/keystore
78 log "root does not have permission to run test"
/system/extras/verity/
H A Dbuild_verity_metadata.py30 def run(cmd): function
58 run(cmd)
/system/chre/core/include/chre/core/
H A Devent_loop.h79 * the same thread that will call run() or from a callback invoked within
80 * run()).
103 void run();
106 * Signals the event loop currently executing in run() to exit gracefully at
/system/chre/host/common/include/chre_host/
H A Dsocket_server.h38 * Defines the function signature of the callback given to run() which
60 void run(const char *socketName, bool allowSocketCreation,
/system/core/debuggerd/crasher/mips/
H A Dcrashglue.S36 # don't trash the stack otherwise the signal handler won't run
/system/core/debuggerd/crasher/mips64/
H A Dcrashglue.S36 # don't trash the stack otherwise the signal handler won't run
/system/core/include/utils/
H A DThread.h43 // thread. See the run() method.
48 virtual status_t run( const char* name,
/system/core/libutils/include/utils/
H A DThread.h43 // thread. See the run() method.
48 virtual status_t run( const char* name,
/system/keymaster/
H A DMakefile9 # To build and run these tests, one pre-requisite must be manually installed: BoringSSL.
22 # Then return to $ANDROID_BUILD_TOP/system/keymaster and run "make".
150 .PHONY: coverage memcheck massif clean run
152 %.run: %
156 run: $(BINARIES:=.run)
161 coverage.info: run
387 $(BINARIES:=.run) $(BINARIES:=.memcheck) $(BINARIES:=.massif) \

Completed in 1158 milliseconds

123