HomeSort by relevance Sort by last modified time
    Searched refs:STATE_FILE (Results 1 - 2 of 2) sorted by null

  /external/toolchain-utils/binary_search_tool/test/
binary_search_tool_tester.py 48 os.remove(binary_search_state.STATE_FILE)
55 os.remove(os.readlink(binary_search_state.STATE_FILE))
56 os.remove(binary_search_state.STATE_FILE)
120 os.remove(binary_search_state.STATE_FILE)
129 os.remove(os.readlink(binary_search_state.STATE_FILE))
134 './is_setup', binary_search_state.STATE_FILE, 'noinc_prune_bad',
196 state_file = binary_search_state.STATE_FILE
199 with open(state_file, 'w') as f:
206 with open(state_file, 'r') as f
    [all...]
  /external/toolchain-utils/binary_search_tool/
binary_search_state.py 34 STATE_FILE = '%s.state' % sys.argv[0]
36 os.path.dirname(STATE_FILE), '.%s' % os.path.basename(STATE_FILE))
557 """Save state to STATE_FILE.
560 object. Then atomically overwrite the STATE_FILE symlink to point to the
564 Error if STATE_FILE already exists but is not a symlink.
574 if os.path.exists(STATE_FILE):
575 if os.path.islink(STATE_FILE):
576 old_state = os.readlink(STATE_FILE)
579 'State file saved to %s' % (STATE_FILE, path))
    [all...]

Completed in 787 milliseconds