HomeSort by relevance Sort by last modified time
    Searched full:host (Results 101 - 125 of 10789) sorted by null

1 2 3 45 6 7 8 91011>>

  /cts/apps/CtsVerifier/res/xml/
transport_aid_list_1.xml 0 <host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
6 </host-apdu-service>
transport_aid_list_2.xml 0 <host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
6 </host-apdu-service>
  /external/autotest/server/
constants.py 4 # Attribute of host that needs logs to be collected.
10 # Flag file to indicate the host is an adb tester.
base_utils_unittest.py 32 gooddata = (('host', ('host', 'root', '', 22)),
33 ('host:21', ('host', 'root', '', 21)),
34 ('user@host', ('host', 'user', '', 22)),
35 ('user:pass@host', ('host', 'user', 'pass', 22)),
36 ('user:pass@host:1234', ('host', 'user', 'pass', 1234))
    [all...]
  /external/autotest/server/control_segments/
crashdumps 7 host = hosts.create_target_machine(machine, initialize=False,
10 crashcollect.get_crashdumps(host, test_start_time)
crashinfo 10 host = hosts.create_host(machine, initialize=False, auto_monitor=False)
11 crashcollect.get_crashinfo(host, test_start_time)
  /external/autotest/server/hosts/
remote_unittest.py 11 host = remote.RemoteHost("myhost")
12 self.assertEqual(host.hostname, "myhost")
  /external/autotest/server/self-test/
timed_test.srv 2 host = hosts.create_host(machine)
3 at = autotest.Autotest(host)
  /external/autotest/server/site_tests/platform_CryptohomeMigrateChapsToken/
platform_CryptohomeMigrateChapsToken.py 18 def run_once(self, host, baseline_version=None):
21 final_version = afe_utils.get_build(host)
25 board_name = host.get_board().split(':')[1]
29 self.job.run_test('provision_AutoUpdate', host=host,
31 client_at = autotest.Autotest(host)
35 self.job.run_test('provision_AutoUpdate', host=host,
  /external/autotest/server/tests/cleanup_test/
cleanup_test.py 7 def execute(self, host):
9 host.cleanup()
  /external/autotest/server/tests/reinstall/
reinstall.py 9 def execute(self, host):
11 afe_utils.machine_install_and_update_labels(host)
  /external/autotest/server/tests/verify_test/
verify_test.py 7 def execute(self, host):
9 host.verify()
  /external/c-ares/
ares_free_hostent.c 27 void ares_free_hostent(struct hostent *host)
31 if (!host)
34 free((char *)(host->h_name));
35 for (p = host->h_aliases; *p; p++)
37 free(host->h_aliases);
38 free(host->h_addr_list[0]); /* no matter if there is one or many entries,
40 free(host->h_addr_list);
41 free(host);
  /external/chromium-trace/catapult/third_party/typ/typ/tests/
pool_test.py 19 from typ.host import Host
23 def _pre(host, worker_num, context): # pylint: disable=W0613
52 host = Host()
54 pool = make_pool(host, jobs, _echo, context, _pre, _post)
71 host = pool.host
73 host = Host()
    [all...]
  /external/nist-sip/java/javax/sip/
IOExceptionEvent.java 10 public IOExceptionEvent(Object source, String host, int port,
13 mHost = host;
  /external/selinux/
CleanSpec.mk 4 $(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/bin/audit2allow)
5 $(call add-clean-step, rm -rf $(OUT_DIR)/host/linux-x86/bin/audit2why)
  /external/valgrind/none/tests/
res_search.vgtest 1 prereq: which host >/dev/null 2>/dev/null && host www.yahoo.com > /dev/null && ! ../../tests/os_test darwin
  /prebuilts/go/darwin-x86/src/net/
hook.go 10 testHookLookupIP = func(fn func(string) ([]IPAddr, error), host string) ([]IPAddr, error) { return fn(host) }
  /prebuilts/go/linux-x86/src/net/
hook.go 10 testHookLookupIP = func(fn func(string) ([]IPAddr, error), host string) ([]IPAddr, error) { return fn(host) }
  /external/autotest/server/site_tests/audio_AudioRoutingUSB/
audio_AudioRoutingUSB.py 17 def get_opened_device(self, host):
19 output = host.run('lsof -Fn +D /dev/snd', ignore_status=True).stdout
22 def run_once(self, host):
24 host.run('aplay /dev/zero </dev/null >/dev/null 2>&1 &')
25 self.run_test_while_audio_is_playing(host)
27 host.run('killall aplay')
29 def run_test_while_audio_is_playing(self, host):
30 host.servo.set('dut_usb2_prtctl', 'on')
33 host.servo.set('usb_mux_oe2', 'off')
35 dev1 = self.get_opened_device(host)
    [all...]
  /external/clang/test/CodeGenCUDA/
device-vtable.cu 6 // order to avoid emitting vtables for host-only classes on device
10 // RUN: | FileCheck %s -check-prefix=CHECK-HOST -check-prefix=CHECK-BOTH
19 //CHECK-HOST: @_ZTV1H =
20 //CHECK-HOST-SAME: @_ZN1H6methodEv
29 //CHECK-HOST-NOT: @_ZTV1D
31 // This is the case with mixed host and device virtual methods. It's
32 // impossible to emit a valid vtable in that case because only host or
33 // only device methods would be available during host or device
44 // CHECK-HOST-SAME: @_ZN2HD8h_methodEv
45 // CHECK-HOST-NOT: @_ZN2HD8d_methodE
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerViewAccessibilityDelegate.java 43 public boolean performAccessibilityAction(View host, int action, Bundle args) {
44 if (super.performAccessibilityAction(host, action, args)) {
55 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
56 super.onInitializeAccessibilityNodeInfo(host, info);
64 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) {
65 super.onInitializeAccessibilityEvent(host, event);
67 if (host instanceof RecyclerView && !shouldIgnore()) {
68 RecyclerView rv = (RecyclerView) host;
86 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
87 super.onInitializeAccessibilityNodeInfo(host, info)
    [all...]
  /external/autotest/client/bin/
local_host_unittest.py 29 host = local_host.LocalHost()
30 self.assertEqual(host.hostname, 'foo')
33 host = local_host.LocalHost(hostname='bar')
34 self.assertEqual(host.hostname, 'bar')
40 host = local_host.LocalHost()
41 host.wait_up(1)
46 host = local_host.LocalHost()
53 return host
60 host = self._setup_run(result)
62 self.assertEqual(host.run('yes', timeout=123, ignore_status=True
    [all...]
  /external/autotest/server/cros/
time_util.py 8 def get_datetime_float(host):
10 Returns host's system time in seconds since epoch.
12 @param host: an Autotest host object.
18 r = host.run('date +%s.%N')
  /external/autotest/server/site_tests/platform_FullyChargedPowerStatus/
platform_FullyChargedPowerStatus.py 21 self.host.power_on()
30 power_supply_info = self.host.get_power_supply_info()
72 return self.host.run('ls %s' % _CHROME_PATH,
82 boot_id = self.host.get_boot_id()
83 thread = threading.Thread(target = self.host.suspend)
85 self.host.test_wait_for_sleep(_LONG_TIMEOUT)
90 def run_once(self, host, power_status_sets):
91 self.host = host
92 self.autotest_client = autotest.Autotest(self.host)
    [all...]

Completed in 569 milliseconds

1 2 3 45 6 7 8 91011>>