/external/autotest/server/site_tests/firmware_ECCharging/ |
D | firmware_ECCharging.py | 36 voltage = int(self.ec.send_command_get_output("battery", 38 logging.info("Battery desired voltage = %d mV", voltage) 39 return voltage 52 voltage = int(self.ec.send_command_get_output("battery", 54 logging.info("Battery actual voltage = %d mV", voltage) 55 return voltage 76 voltage = int(self.ec.send_command_get_output("charger", 78 logging.info("Charger target voltage = %d mV", voltage) 79 return voltage
|
D | control | 21 - Charger target voltage should be less than 105% of battery desired voltage. 23 - Charger actual voltage should be less than 105% of charger target voltage.
|
/external/syslinux/com32/gpllib/dmi/ |
D | dmi_battery.c | 58 void dmi_battery_voltage(uint16_t code, char *voltage) in dmi_battery_voltage() argument 61 sprintf(voltage, "%s", "Unknown"); in dmi_battery_voltage() 63 sprintf(voltage, "%u mV", code); in dmi_battery_voltage()
|
D | dmi.c | 334 static const uint16_t voltage[] = { in dmi_processor_voltage() local 346 dmi->processor.voltage_mv = voltage[i]; in dmi_processor_voltage()
|
/external/autotest/server/cros/servo/ |
D | plankton.py | 115 def charge(self, voltage): argument 120 if voltage not in self.USBC_CHARGING_VOLTAGES: 121 raise PlanktonError('Invalid charging voltage: %s' % voltage) 123 self.set(self.USBC_ROLE, self.USBC_CHARGING_VOLTAGES[voltage])
|
D | pd_device.py | 86 def vbus_request(self, voltage): argument
|
/external/autotest/server/site_tests/firmware_PDVbusRequest/ |
D | firmware_PDVbusRequest.py | 121 for voltage in self.plankton.get_charging_voltages(): 122 logging.info('********* %r *********', voltage) 124 self.plankton.charge(voltage)
|
D | control | 9 PURPOSE = "Servo based PD VBUS voltage level test" 10 CRITERIA = "This test will fail if actual voltage does not meet expected"
|
/external/autotest/server/site_tests/firmware_TypeCCharging/ |
D | control | 10 CRITERIA = "This test will fail if Plankton type C VBUS voltage not in range." 20 doesn't accept positive charging voltage.
|
/external/autotest/client/profilers/powertop/src/ |
D | powertop.c | 501 double voltage = 0.0; in print_battery_proc_acpi() local 530 voltage = strtoull(c, NULL, 10) / 1000.0; in print_battery_proc_acpi() 548 rate += watts_drawn + voltage * amperes_drawn; in print_battery_proc_acpi() 550 cap += watts_left + voltage * amperes_left; in print_battery_proc_acpi() 668 double voltage = 0.0; in print_battery_sysfs() local 705 voltage = strtoull(line, NULL, 10) / 1000000.0; in print_battery_sysfs() 719 watts_left = voltage; in print_battery_sysfs() 737 rate += watts_drawn + voltage * amperes_drawn; in print_battery_sysfs()
|
/external/python/cpython2/Doc/tutorial/ |
D | controlflow.rst | 410 def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'): 412 print "if you put", voltage, "volts through it." 416 accepts one required argument (``voltage``) and three optional arguments 421 parrot(voltage=1000) # 1 keyword argument 422 parrot(voltage=1000000, action='VOOOOOM') # 2 keyword arguments 423 parrot(action='VOOOOOM', voltage=1000000) # 2 keyword arguments 430 parrot(voltage=5.0, 'dead') # non-keyword argument after a keyword argument 431 parrot(110, voltage=220) # duplicate value for the same argument 438 non-optional arguments (e.g. ``parrot(voltage=1000)`` is valid too). 534 >>> def parrot(voltage, state='a stiff', action='voom'): [all …]
|
/external/python/cpython3/Doc/tutorial/ |
D | controlflow.rst | 441 def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'): 443 print("if you put", voltage, "volts through it.") 447 accepts one required argument (``voltage``) and three optional arguments 452 parrot(voltage=1000) # 1 keyword argument 453 parrot(voltage=1000000, action='VOOOOOM') # 2 keyword arguments 454 parrot(action='VOOOOOM', voltage=1000000) # 2 keyword arguments 461 parrot(voltage=5.0, 'dead') # non-keyword argument after a keyword argument 462 parrot(110, voltage=220) # duplicate value for the same argument 469 non-optional arguments (e.g. ``parrot(voltage=1000)`` is valid too). 578 >>> def parrot(voltage, state='a stiff', action='voom'): [all …]
|
/external/syslinux/com32/hdt/ |
D | hdt-dump-dmi.c | 180 char voltage[16]={0}; in dump_processor() local 181 snprintf(voltage,sizeof(voltage),"%d.%02d", in dump_processor() 200 add_s("dmi.processor.voltage",voltage); in dump_processor()
|
/external/syslinux/com32/gplinclude/dmi/ |
D | dmi_battery.h | 55 void dmi_battery_voltage(uint16_t code, char *voltage);
|
/external/devlib/doc/ |
D | instrumentation.rst | 188 (e.g. a voltage rail or location of a sensor). 197 both voltage and power). 205 The name of the "site" from which the measurements are collected (e.g. voltage 251 | voltage | volts | power/energy |
|
/external/walt/docs/ |
D | AudioLatency.md | 66 Audio output signal from the phone is detected when audio line voltage crosses a predefined
|
/external/unicode/ |
D | emoji-data.txt | 70 26A0..26A1 ; Emoji # 4.0 [2] (⚠️..⚡) warning..high voltage 270 26A1 ; Emoji_Presentation # 4.0 [1] (⚡) high voltage 509 26A0..26A1 ; Extended_Pictographic# 4.0 [2] (⚠️..⚡) warning..high voltage
|
/external/python/cpython3/Doc/library/ |
D | functions.rst | 1186 def voltage(self): 1187 """Get the current voltage.""" 1190 The ``@property`` decorator turns the :meth:`voltage` method into a "getter" 1192 *voltage* to "Get the current voltage."
|
/external/python/cpython2/Doc/library/ |
D | functions.rst | 1039 def voltage(self): 1040 """Get the current voltage.""" 1043 The ``@property`` decorator turns the :meth:`voltage` method into a "getter" 1045 *voltage* to "Get the current voltage."
|
/external/python/cpython2/Doc/extending/ |
D | extending.rst | 703 int voltage; 708 static char *kwlist[] = {"voltage", "state", "action", "type", NULL}; 711 &voltage, &state, &action, &type)) 715 action, voltage);
|
/external/python/cpython3/Doc/extending/ |
D | extending.rst | 729 int voltage; 734 static char *kwlist[] = {"voltage", "state", "action", "type", NULL}; 737 &voltage, &state, &action, &type)) 741 action, voltage);
|
/external/lisa/ipynb/examples/energy_meter/ |
D | EnergyMeter_Monsoon.ipynb | 140 "# Once powered the Monsoon Power Monitor does not enable the output voltage.\n", 145 "!$MONSOON_BIN --device /dev/ttyACM1 --voltage 4.2\n",
|
/external/lisa/ipynb/releases/ |
D | ReleaseNotes_v17.03.ipynb | 125 " 2. Idle state power is assumed to be independent of voltage\n",
|
/external/syslinux/gpxe/src/drivers/infiniband/ |
D | MT25408_PRM.h | 1350 pseudo_bit_t voltage[0x00004]; member
|
/external/icu/icu4c/source/test/testdata/ |
D | emoji-test.txt | 2662 26A1 ; fully-qualified # ⚡ high voltage
|