HomeSort by relevance Sort by last modified time
    Searched refs:keyval (Results 26 - 50 of 61) sorted by null

12 3

  /external/autotest/client/site_tests/firmware_VbootCrypto/
firmware_VbootCrypto.py 31 for keyval in results.splitlines():
32 if keyval.strip().startswith('#'):
34 key, val = keyval.split(':')
  /external/autotest/client/site_tests/graphics_WebGLAquarium/
graphics_WebGLAquarium.py 173 keyval = power_logger.calc()
174 logging.info('Power output %s', keyval)
175 return keyval['result_' + measurements[0].domain + '_pwr']
  /external/autotest/client/site_tests/video_HangoutHardwarePerf/
video_HangoutHardwarePerf.py 135 keyval = self._power_logger.calc()
136 logging.info(keyval)
137 return keyval['result_' + self._system_power.domain + '_pwr']
  /external/autotest/scheduler/
query_managers.py 200 """Load suite_min_duts job keyval for a set of suites.
210 return dict((keyval.job_id, int(keyval.value)) for keyval in query)
host_scheduler_unittests.py 376 # Set min_dut=1 for the suite as a job keyval.
377 keyval = models.JobKeyval(
379 keyval.save()
382 # specified in the job keyval.
  /system/connectivity/shill/
eap_credentials.cc 98 typedef std::pair<const char*, const char*> KeyVal;
99 KeyVal init_propertyvals[] = {
101 KeyVal(WPASupplicant::kNetworkPropertyEapAnonymousIdentity,
103 KeyVal(WPASupplicant::kNetworkPropertyEapClientCert,
105 KeyVal(WPASupplicant::kNetworkPropertyEapIdentity, identity_.c_str()),
106 KeyVal(WPASupplicant::kNetworkPropertyEapCaPassword,
108 KeyVal(WPASupplicant::kNetworkPropertyEapPrivateKey,
110 KeyVal(WPASupplicant::kNetworkPropertyEapPrivateKeyPassword,
114 KeyVal(WPASupplicant::kNetworkPropertyEapCaCert, ca_cert.c_str()),
115 KeyVal(WPASupplicant::kNetworkPropertyEapCaCertId
    [all...]
  /external/autotest/client/site_tests/graphics_GLBench/
graphics_GLBench.py 203 keyval, remainder = line[9:].split('[')
204 key, val = keyval.split('=')
  /external/autotest/client/site_tests/video_PlaybackPerf/
video_PlaybackPerf.py 212 keyval = power_logger.calc()
213 return keyval['result_' + measurements[0].domain + '_pwr']
  /external/autotest/client/site_tests/power_LoadTest/
power_LoadTest.py 546 def _energy_use_from_powerlogger(self, keyval):
552 keyval: the dictionary of keyvals containing PowerLogger output
563 if duration_key not in keyval or avg_power_key not in keyval:
565 energy_wh += keyval[duration_key] * keyval[avg_power_key] / 3600
  /external/autotest/site_utils/
generate_test_report 88 """Parses keyval file under testdir and return the perf keyval pairs.
92 @return dict of perf keyval pairs.
100 """Parses keyval file under testdir and return the attr keyval pairs.
104 @return dict of attr keyval pairs.
112 """Parses keyval file under testdir.
114 If testdir contains a result folder, process the keyval file and return
115 a dictionary of perf keyval pairs.
118 @param keyword: The keyword of keyval, either 'perf' or 'attr'
    [all...]
  /external/autotest/client/site_tests/video_WebRtcPerf/
video_WebRtcPerf.py 268 keyval = power_logger.calc()
269 return keyval['result_' + measurements[0].domain + '_pwr']
  /external/autotest/client/tools/
html_report.py     [all...]
  /external/autotest/server/
test.py 160 """Pulls sysinfo and keyval data from the client.
165 # pull the keyval data back into the local one
168 host.get_file(os.path.join(outputdir, "keyval"), path)
169 keyval = utils.read_keyval(path)
171 mytest.write_test_keyval(keyval)
  /external/autotest/client/site_tests/firmware_TouchMTB/
firmware_window.py 411 def create_key_press_event(self, keyval):
416 event.keyval = keyval
  /external/autotest/frontend/afe/
models_test.py 593 for keyval in job['jobkeyval_set']:
594 keyval.pop('id')
597 keyval.pop('id')
resources.py 664 'keyvals': dict((keyval.key, keyval.value)
665 for keyval in self.instance.keyvals)
    [all...]
rpc_interface.py     [all...]
  /external/autotest/client/common_lib/
base_utils.py 476 directory name, we assume you want the file to be called keyval.
483 path = os.path.join(path, 'keyval')
492 keyval = {}
506 keyval[key] = value
510 return keyval
529 path = os.path.join(path, 'keyval')
530 keyval = open(path, 'a')
543 keyval.write('%s=%s\n' % (key, dictionary[key]))
545 keyval.close()
    [all...]
  /system/bt/audio_a2dp_hw/
audio_a2dp_hw.c 753 char *keyval = (char *)hash_map_get(params, "closing"); local
755 if (keyval && strcmp(keyval, "true") == 0)
761 keyval = (char *)hash_map_get(params, "A2dpSuspended");
763 if (keyval && strcmp(keyval, "true") == 0)
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y 64 %type <node> interfacedcl keyval labelname name
1085 keyval: label
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
go.y 61 %type <node> interfacedcl keyval labelname name
1082 keyval: label
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
go.y 64 %type <node> interfacedcl keyval labelname name
1085 keyval: label
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
go.y 61 %type <node> interfacedcl keyval labelname name
1082 keyval: label
    [all...]
  /external/autotest/client/virt/
virt_step_editor.py 45 keyval = keyvals[0][0]
46 keyname = gtk.gdk.keyval_name(keyval)
92 if ord('a') <= keyval <= ord('z') or ord('0') <= keyval <= ord('9'):
    [all...]
  /external/opencv3/modules/highgui/src/
window_gtk.cpp     [all...]

Completed in 1011 milliseconds

12 3