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

  /external/autotest/client/tests/kvm/tests/
trans_hugepage_swapping.py 44 args_dict = get_args(args_dict_check)
46 total = int(args_dict['total']) / 1024
47 free = int(args_dict['free']) / 1024
48 swap_size = int(args_dict['swap_size']) / 1024
49 swap_free.append(int(args_dict['swap_free'])/1024)
50 hugepage_size = int(args_dict['hugepage_size']) / 1024
99 args_dict = get_args(args_dict_check)
100 swap_free.append(int(args_dict['swap_free'])/1024)
  /external/libchrome/base/trace_event/
trace_event_unittest.cc 245 DictionaryValue* args_dict = NULL;
246 dict->GetDictionary("args", &args_dict);
247 if (args_dict)
248 return IsKeyValueInDict(key_value, args_dict);
356 const DictionaryValue* args_dict = NULL; local
357 dict->GetDictionary("args", &args_dict);
358 if (args_dict)
359 return IsStringInDict(string_to_match, args_dict);
2045 const DictionaryValue* args_dict = NULL; local
2146 const DictionaryValue* args_dict = NULL; local
2321 const DictionaryValue* args_dict = NULL; local
    [all...]
  /external/autotest/client/cros/
enterprise_policy_base.py 98 args_dict = utils.args_to_dict(args)
99 self.mode = args_dict.get('mode', 'all')
100 self.case = args_dict.get('case')
101 self.value = args_dict.get('value')
102 self.env = args_dict.get('env', 'dm-fake')
103 self.username = args_dict.get('username')
104 self.password = args_dict.get('password')
105 self.dms_name = args_dict.get('dms_name')
storage.py 424 args_dict = base_utils.args_to_dict(args)
443 if set_if_exists(args_dict, storage_dict, key):
444 del args_dict[key]
448 return storage_dict, args_dict
  /external/autotest/server/hosts/
gce_host.py 17 def extract_arguments(args_dict):
20 @param args_dict: dictionary of all arguments supplied to the test.
23 return {k: v for k, v in args_dict.items()
cros_host.py 206 def _extract_arguments(args_dict, key_subset):
207 """Extract options from `args_dict` and return a subset result.
216 @param args_dict Dictionary from which to extract the arguments.
217 @param key_subset Tuple of keys to extract from the args_dict, e.g.
222 if arg in args_dict:
223 result[arg] = args_dict[arg]
228 def get_chameleon_arguments(args_dict):
229 """Extract chameleon options from `args_dict` and return the result.
233 args_dict = utils.args_to_dict(args)
234 chameleon_args = hosts.CrosHost.get_chameleon_arguments(args_dict)
    [all...]
  /external/autotest/client/cros/chameleon/
chameleon.py 620 args_dict = utils.args_to_dict(args)
621 hostname = args_dict.get('chameleon_host', None)
622 port = args_dict.get('chameleon_port', CHAMELEON_PORT)
  /external/autotest/site_utils/
run_suite.py 275 args_dict = {}
276 args_dict['attr_filter'] = attr_filter_val
277 options.suite_args = str(args_dict)
    [all...]

Completed in 1749 milliseconds