Home
last modified time | relevance | path

Searched refs:token_path (Results 1 – 6 of 6) sorted by relevance

/external/autotest/client/cros/
Dpkcs11.py41 def __get_pkcs11_file_list(token_path): argument
44 file_list_output = __run_cmd('find %s ' % token_path + find_args)
47 def __get_token_slot_by_path(token_path): argument
50 match = re.search(r'^Slot (\d+): ' + token_path, line)
56 def __verify_tokenname(token_path): argument
60 match = re.search(r'/run/daemon-store/chaps/(.*)', token_path)
84 def __verify_permissions(token_path): argument
90 (token_path, 'chaps:chronos-access', CHAPS_DIR_PERM),
91 ('%s/database' % token_path, 'chaps:chronos-access', CHAPS_DIR_PERM)]
/external/angle/scripts/
Dgenerate_stats.py711 token_path = auth_path + '/token.pickle'
722 if os.path.exists(token_path):
723 with open(token_path, 'rb') as token:
725 LOGGER.info('Loaded credentials from ' + token_path)
734 with open(token_path, 'wb') as token:
/external/pigweed/pw_metric/pw_metric_proto/
Dmetric_service.options16 pw.metric.Metric.token_path max_count:4
Dmetric_service.proto39 repeated fixed32 token_path = 1; field
/external/pigweed/pw_metric/
Dmetric_service_nanopb.cc47 std::span<Token> proto_path(proto_metric.token_path); in Write()
Dmetric_service_nanopb_test.cc147 if (expected_token_path[i] != metric.token_path[i]) { in TokenPathsMatch()