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

1 2 3 4 5 6 7 8 910

  /build/target/board/generic_armv5/
AndroidBoard.mk 17 -include build/target/board/generic/AndroidBoard.mk
device.mk 17 include build/target/board/generic/device.mk
BoardConfig.mk 17 include build/target/board/generic/BoardConfig.mk
  /external/autotest/site_utils/
stable_version_utils.py 16 # Name of the default board. For boards that don't have stable version
17 # explicitly set, version for the default board will be used.
28 versions = dict([(v.board, v.version)
38 def get(board=DEFAULT, android=False):
39 """Get stable version for the given board.
41 @param board: Name of the board, default to value `DEFAULT`.
43 board. There is no default version that works for all
45 OS based board.
47 @return: Stable version of the given board. If the given board is not liste
    [all...]
assign_stable_images.py 6 in the lab. For each board, if the version that Omaha is serving
7 on the Beta channel for the board is more recent than the current
11 The upgrade process is applied to every "managed board" in the test
12 lab. Generally, a managed board is a board with both spare and
16 of "managed board".
47 # * The board name of the product, as known to Omaha.
54 # _SET_VERSION - `atest` command that will assign a specific board a
60 # _DEFAULT_BOARD - The distinguished board name used to identify a
61 # stable version mapping that is used for any board without an explici
    [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())
balance_pools.py 14 usage: balance_pool.py [ options ] POOL BOARD [ BOARD ... ]
18 BOARD Names of boards to balance
24 count for every BOARD
27 BOARD
30 every BOARD
38 for every BOARD, and replace them with enough working DUTs taken
44 DUTs for every BOARD in the target POOL.
52 If the selected target POOL is for a Freon board, *and* the selected
55 be used for the Freon board. A similar rule applies to balancin
    [all...]
  /external/autotest/client/site_tests/platform_KernelVersionByBoard/
platform_KernelVersionByBoard.py 21 def _expected_kernel(self, board):
29 if board == file_board:
30 logging.info('Expected Kernel Version for %s: %s', board,
34 actual = self._actual_kernel(board)
37 % (board, actual))
39 def _actual_kernel(self, board):
48 board = utils.get_current_board()
49 actual = self._actual_kernel(board)
50 expected = self._expected_kernel(board)
53 % (board, expected, actual)
    [all...]
  /external/autotest/cli/
stable_version.py 7 board.
10 list: Show version of a given board or list all boards and their stable
11 versions if --board option is not specified.
12 modify: Set the stable version of a given board to the given value.
13 delete: Delete the stable version of a given board. So its stable version will
14 use the value for board `DEFAULT`.
37 self.parser.add_option('-b', '--board',
38 help='Name of the board',
41 metavar='BOARD')
44 attribute_name='board', use_leftover=True
    [all...]
  /prebuilts/go/darwin-x86/test/
solitaire.go 11 // This program solves the (English) peg solitaire board game.
16 const N = 11 + 1 // length of a board row (+1 for newline)
18 // The board must be surrounded by 2 illegal fields in each direction
19 // so that move() doesn't need to check the board boundaries. Periods
21 var board = []rune( var
41 for pos, field := range board {
59 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' {
60 board[pos] = '?
    [all...]
  /prebuilts/go/linux-x86/test/
solitaire.go 11 // This program solves the (English) peg solitaire board game.
16 const N = 11 + 1 // length of a board row (+1 for newline)
18 // The board must be surrounded by 2 illegal fields in each direction
19 // so that move() doesn't need to check the board boundaries. Periods
21 var board = []rune( var
41 for pos, field := range board {
59 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' {
60 board[pos] = '?
    [all...]
  /prebuilts/go/darwin-x86/doc/play/
solitaire.go 2 // solitaire board game.
11 // The board must be surrounded by 2 illegal
13 // doesn't need to check the board boundaries.
17 var board = []rune( var
37 for pos, field := range board {
56 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' {
57 board[pos] = '?'
58 board[pos+dir] = '?
    [all...]
  /prebuilts/go/linux-x86/doc/play/
solitaire.go 2 // solitaire board game.
11 // The board must be surrounded by 2 illegal
13 // doesn't need to check the board boundaries.
17 var board = []rune( var
37 for pos, field := range board {
56 if board[pos] == '?' && board[pos+dir] == '?' && board[pos+2*dir] == '?' {
57 board[pos] = '?'
58 board[pos+dir] = '?
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/examples/java/
Example.java 42 String board = mraa.getPlatformName(); local
46 System.out.println(String.format("Running on %s", board));
  /device/linaro/hikey/uefi-tools/
uefi-build.sh 4 # Board Configuration Section
7 # Board configuration moved to parse-platforms.py and platforms.config.
28 PLATFORM_NAME="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o longname`"
29 PLATFORM_PREBUILD_CMDS="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o prebuild_cmds`"
30 PLATFORM_BUILDFLAGS="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o buildflags`"
32 PLATFORM_BUILDCMD="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o buildcmd`"
33 PLATFORM_DSC="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o dsc`"
34 PLATFORM_ARCH="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o arch`"
37 TEMP_PACKAGES_PATH="`$TOOLS_DIR/parse-platforms.py $PLATFORM_CONFIG -p $board get -o packages_path`"
68 echo "$board"_BUILDFLAGS="'$PLATFORM_BUILDFLAGS'
    [all...]
  /external/autotest/server/site_tests/provision_AndroidUpdate/
provision_AndroidUpdate.py 78 board = afe_utils.get_board(host)
79 if board:
80 logging.debug('Host %s is board type: %s', host, board)
81 if adb_host.OS_TYPE_BRILLO in board:
87 board=board.split('-')[-1]
88 value = afe_utils.get_stable_version(board=board, android=True)
90 raise error.TestFail('No stable version assigned for board:
    [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
38 # stable_version for the given board.
39 stable_version = host.afe.run('get_stable_version', board=board)
42 build = build_pattern % (board, stable_version)
48 "--board=%s --build=%s --suite_name=%s" %
49 (moblab_host.AUTOTEST_INSTALL_DIR, board, build,
  /device/generic/x86/
BoardConfig.mk 37 BOARD_SEPOLICY_DIRS += build/target/board/generic/sepolicy
38 BOARD_SEPOLICY_DIRS += build/target/board/generic_x86/sepolicy
  /device/huawei/angler/camera/
common.mk 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
  /device/lge/bullhead/camera/
common.mk 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
  /external/autotest/site_utils/suite_scheduler/
base_event.py 31 def BuildName(board, type, milestone, manifest):
32 """Format a build name, given board, type, milestone, and manifest number.
34 @param board: board the manifest is for, e.g. x86-alex.
40 return '%s-%s/R%s-%s' % (board, type, milestone, manifest)
138 def GetBranchBuildsForBoard(self, board):
139 """Get per-branch, per-board builds since last run of this event.
141 @param board: the board whose builds we want.
177 def Handle(self, scheduler, branch_builds, board, force=False)
    [all...]
  /hardware/bsp/intel/peripheral/libmraa/src/usb/
usb.c 35 mraa_usb_platform_extender(mraa_board_t* board)
61 board->sub_platform = sub_plat;
  /hardware/qcom/camera/
common.mk 4 ifeq ($(call is-vendor-board-platform,QCOM),true)
  /device/google/contexthub/firmware/src/platform/stm32f4xx/
spi.c 109 const struct StmSpiBoardCfg *board; member in struct:StmSpiDev
130 gpioConfigAlt(pdev->miso, dataSpeed, dataPull, GPIO_OUT_PUSH_PULL, pdev->board->gpioFunc);
131 gpioConfigAlt(pdev->mosi, dataSpeed, dataPull, GPIO_OUT_PUSH_PULL, pdev->board->gpioFunc);
136 gpioConfigAlt(pdev->sck, sckSpeed, sckPull, GPIO_OUT_PUSH_PULL, pdev->board->gpioFunc);
238 stmSpiDataPullMode(pdev, pdev->board->gpioSpeed, pdev->board->gpioPull);
239 stmSpiSckPullMode(pdev, pdev->board->gpioSpeed, mode->cpol ? GPIO_PULL_UP : GPIO_PULL_DOWN);
245 gpioConfigOutput(pdev->nss, pdev->board->gpioSpeed, pdev->board->gpioPull, GPIO_OUT_PUSH_PULL, 1);
255 stmSpiDataPullMode(pdev, pdev->board->gpioSpeed, GPIO_PULL_NONE)
612 const struct StmSpiBoardCfg *board = boardStmSpiCfg(busId); local
    [all...]
  /build/target/product/
full.mk 23 $(call inherit-product, $(SRC_TARGET_DIR)/board/generic/device.mk)

Completed in 561 milliseconds

1 2 3 4 5 6 7 8 910