HomeSort by relevance Sort by last modified time
    Searched full:board (Results 76 - 100 of 1338) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/autotest/test_suites/
control.wifi_matfunc_bcm4371 19 @param board: The board to test on. Ex: x86-mario
21 board is used.
33 build=build, board=board, name=NAME, job=job, pool=pool,
control.wifi_perf_bcm4371 19 @param board: The board to test on. Ex: x86-mario
21 board is used.
33 build=build, board=board, name=NAME, job=job, pool=pool,
  /external/autotest/site_utils/
collect_host_stats.py 8 each board and pool.
46 def report_stats(board, pool, start_time, end_time, span):
47 """Report machine stats for given board, pool and time period.
49 @param board: Name of board.
56 print '================ %-12s %-12s ================' % (board, pool)
60 board=board,
79 'collected for board: %s, pool: %s, diff: %s' %
80 (board, pool, total - total_time)
    [all...]
restart_latest.py 8 board. Which will cause all tests whose locks were removed to be rescheduled the
10 the LATEST file in each board directory.
72 # Build board listing.
76 boards = [board for board in os.listdir('.') if os.path.isdir(board)]
78 for board in boards:
79 latest_path = os.path.join(board, 'LATEST')
85 build_path = os.path.join(board, open(latest_path, 'r').read().strip())
diagnosis_utils.py 24 """Raised when a board is not available in the lab."""
30 def __init__(self, board, pool, num_available, num_required, hosts):
35 @param board: Name of board.
39 @param hosts: Sequence of Host instances for given board and pool.
41 self.board = board
54 ' board={this.board!r},'
67 'Not enough DUTs for board: {this.board}, pool: {this.pool};
    [all...]
host_history.py 14 python host_history.py -n 10000 -l 24 --board=daisy
144 def get_results(start_time, end_time, hosts=None, board=None, pool=None,
146 """Get history results of specified hosts or board/pool.
148 If hosts is set to None, all hosts are used, filtered by the board and pool
149 constraints. If board is not provided, all boards are included. If pool is
151 If a list of hosts is provided, the board and pool constraints are ignored.
154 @param board: board type of hosts. Default is None.
170 hosts=hosts, board=board, pool=pool
    [all...]
  /external/toolchain-utils/
build_chromeos.py 49 help='Delete the board and start fresh',
54 help='Rebuild all board packages except the toolchain.',
68 parser.add_argument('--board',
69 dest='board',
70 help='ChromeOS target board, e.g. x86-generic')
115 if options.board is None:
116 Usage(parser, '--board must be set')
132 misc.RemoveChromeBrowserObjectFiles(options.chromeos_root, options.board)
140 board=options.board,
    [all...]
weekly_report.py 22 def Generate_Vanilla_Report_File(vanilla_image_paths, board, remote,
29 board: %s
31 """ % (board, remote)
40 filename = '%s_%s_vanilla.exp' % (EXPERIMENT_FILE, board)
65 def Generate_Test_File(test_image_paths, vanilla_image_path, board, remote,
72 board: %s
74 """ % (board, remote)
83 filename = '%s_%s.exp' % (EXPERIMENT_FILE, board)
122 parser.add_argument('-b', '--board', dest='board', help='Target board.'
    [all...]
buildbot_test_llvm.py 5 a particular board; then it finds and downloads the trybot image and the
55 def __init__(self, board, chromeos_root, weekday, patches, compiler):
56 self._board = board
62 self._build = '%s-%s-toolchain' % (board, compiler)
70 self._reports = os.path.join(VALIDATION_RESULT_DIR, compiler, board)
118 '--board', default='', dest='board', help='The board to test.')
143 if options.board:
144 fv = ToolchainVerifier(options.board, options.chromeos_root
    [all...]
  /external/toolchain-utils/automation/clients/report/dejagnu/
manifest.py 14 class Manifest(namedtuple('Manifest', 'tool board results')):
21 #@ board: unix
23 So far tool and board parameters are recognized. Their value can contain
30 should only be suppressed if test run was performed on "unix" board.
47 return cls(test_run.tool, test_run.board, results)
84 board = params.get('board', '*')
86 return cls(tool, board, results)
92 for name in ['tool', 'board']:
  /external/autotest/scheduler/shard/
simple_heartbeat_client.py 11 --board lumpy
13 Perform a heartbeat against the given server for the given board,
18 --board lumpy
58 def get_heartbeat_packet(server, board, host_limit, job_limit):
70 url = '%s/%s?raw' % (server, board)
95 def perform_heartbeat(self, board, host_limit, job_limit):
96 """Perform a heartbeat against the given server, for the given board.
98 @param board: Boardname, eg: lumpy.
103 self.server, board, host_limit, job_limit)
118 '--board', default='lumpy'
    [all...]
  /device/google/marlin/common/
utils.mk 75 # The following utilities are meant for board platform specific
78 # $(call get-vendor-board-platforms,v)
79 # returns list of board platforms for vendor v
80 define get-vendor-board-platforms
84 # $(call is-board-platform,bp)
86 define is-board-platform
90 # $(call is-not-board-platform,bp)
92 define is-not-board-platform
96 # $(call is-board-platform-in-list,bpl)
98 define is-board-platform-in-lis
    [all...]
  /external/autotest/client/cros/chameleon/
audio_board.py 5 """This module provides the audio board interface."""
13 """AudioBoard is an abstraction of an audio board on a Chameleon board.
15 It provides methods to control audio board.
35 'There is no jack plugger on this audio board.')
42 """Gets an audio bus on this audio board.
53 """Gets an AudioJackPlugger on this audio board.
63 """Gets an BluetoothController on this audio board.
72 """AudioBus is an abstraction of an audio bus on an audio board.
218 """AudioJackPlugger is an abstraction of plugger controlled by audio board
    [all...]
  /external/autotest/server/
frontend.py 190 A mapping from board names to strings naming software versions.
193 of software associated with a given board. The mapping identifies
198 different types of image. For instance, a single board may have
214 # name as a mapping to use when no specific mapping for a board is
236 mapping board names to version strings.
238 @return A dictionary mapping board names to version strings.
243 def get_version(self, board):
245 Get the mapping of one board in the stable versions table.
247 Look up and return the version mapped to the given board in the
250 @param board The board to be looked up
    [all...]
  /external/autotest/server/site_tests/moblab_RunSuite/
moblab_RunSuite.py 34 # Fetch the board of the DUT's assigned to this Moblab. There should
36 board = host.afe.get_hosts()[0].platform
41 # stable_version for the given board.
44 build = stable_version_map.get_image_name(board)
50 "--board=%s --build=%s --suite_name=%s" %
51 (moblab_host.AUTOTEST_INSTALL_DIR, board, build,
  /external/autotest/server/site_tests/provision_FactoryImage/
control 26 test_that <remote_ip> provision_FactoryImage --board=<board> \
27 --args="image_name=<board>/<build> servo_host=<ip of servo_host>"
29 where servo_host is the ip of beagle board running servod. If a servo_host
40 raise error.AutoservError('Please specify --args="image_name=<board>/'
43 'trying to reimage has a beagle-board/servo '
  /external/autotest/site_utils/admin/scripts/
check_db_queries.sql 82 select count(*) as jobs_per_board, left(name,instr(name,'-0')-1) as board from afe_jobs where name like 'x86%' group by board order by board;
88 select count(*) as values_per_board, left(job_name,instr(job_name,'-0')-1) as board from tko_perf_view_2 where job_name like 'x86%' group by board order by board;
  /external/kernel-headers/original/uapi/linux/
zorro.h 18 * Each Zorro board has a 32-bit ID of the form
75 __u8 er_Type; /* Board type, size and flags */
88 /* er_Type board type bits */
101 struct ExpansionRom cd_Rom; /* copy of board's expansion ROM */
102 __be32 cd_BoardAddr; /* where in memory the board was placed */
103 __be32 cd_BoardSize; /* size of board in bytes */
  /external/toolchain-utils/crosperf/experiment_files/
telemetry_perf_perf 18 board=xxx #<you-board-here>
47 --board="${board}" \
57 if [ "$board" = "xxx" -o "$remote" = "xxx" ]; then
58 echo "Please set board and remote at the top of this script before running."
  /external/autotest/site_utils/suite_scheduler/
manifest_versions.py 80 manifests for a given board.
82 manifests for a given board.
170 def ManifestsSinceDate(self, since_date, board):
171 """Return map of branch:manifests for |board| since |since_date|.
179 @param board: the board whose manifests we want to check for.
183 re.compile(self._BOARD_MANIFEST_RE_PATTERN % board),
184 self._QueryManifestsSinceDate(since_date, board))
187 def ManifestsSinceRev(self, rev, board):
188 """Return map of branch:manifests for |board| since git |rev|
    [all...]
  /tools/test/connectivity/acts/framework/tests/
acts_relay_controller_test.py 70 self.board = MockBoard(self.config)
71 self.relay = Relay(self.board, 'Relay')
72 self.board.set(self.relay.position, RelayState.NO)
79 self.board.set(self.relay.position, RelayState.NO)
82 self.board.get_relay_status(self.relay.position), RelayState.NC)
85 self.board.set(self.relay.position, RelayState.NC)
88 self.board.get_relay_status(self.relay.position), RelayState.NC)
91 self.board.set(self.relay.position, RelayState.NC)
94 self.board.get_relay_status(self.relay.position), RelayState.NO)
97 self.board.set(self.relay.position, RelayState.NO
    [all...]
  /device/google/marlin/power/
Android.mk 3 ifeq ($(call is-vendor-board-platform,QCOM),true)
14 ifeq ($(call is-board-platform-in-list, msm8996), true)
  /device/huawei/angler/power/
Android.mk 14 ifeq ($(call is-board-platform-in-list, msm8994), true)
18 ifeq ($(call is-board-platform-in-list, msm8992), true)
  /device/lge/bullhead/power/
Android.mk 14 ifeq ($(call is-board-platform-in-list, msm8994), true)
18 ifeq ($(call is-board-platform-in-list, msm8992), true)
  /device/linaro/bootloader/edk2/CorebootModulePkg/Include/Guid/
AcpiBoardInfoGuid.h 2 This file defines the hob structure for board related information from acpi table
19 /// Board information GUID

Completed in 2753 milliseconds

1 2 34 5 6 7 8 91011>>