Home
last modified time | relevance | path

Searched refs:voltage (Results 1 – 25 of 27) sorted by relevance

12

/external/autotest/server/site_tests/firmware_ECCharging/
Dfirmware_ECCharging.py36 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
Dcontrol21 - 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/
Ddmi_battery.c58 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()
Ddmi.c334 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/
Dplankton.py115 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])
Dpd_device.py86 def vbus_request(self, voltage): argument
/external/autotest/server/site_tests/firmware_PDVbusRequest/
Dfirmware_PDVbusRequest.py121 for voltage in self.plankton.get_charging_voltages():
122 logging.info('********* %r *********', voltage)
124 self.plankton.charge(voltage)
Dcontrol9 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/
Dcontrol10 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/
Dpowertop.c501 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/
Dcontrolflow.rst410 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/
Dcontrolflow.rst441 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/
Dhdt-dump-dmi.c180 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/
Ddmi_battery.h55 void dmi_battery_voltage(uint16_t code, char *voltage);
/external/devlib/doc/
Dinstrumentation.rst188 (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/
DAudioLatency.md66 Audio output signal from the phone is detected when audio line voltage crosses a predefined
/external/unicode/
Demoji-data.txt70 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/
Dfunctions.rst1186 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/
Dfunctions.rst1039 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/
Dextending.rst703 int voltage;
708 static char *kwlist[] = {"voltage", "state", "action", "type", NULL};
711 &voltage, &state, &action, &type))
715 action, voltage);
/external/python/cpython3/Doc/extending/
Dextending.rst729 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/
DEnergyMeter_Monsoon.ipynb140 "# 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/
DReleaseNotes_v17.03.ipynb125 " 2. Idle state power is assumed to be independent of voltage\n",
/external/syslinux/gpxe/src/drivers/infiniband/
DMT25408_PRM.h1350 pseudo_bit_t voltage[0x00004]; member
/external/icu/icu4c/source/test/testdata/
Demoji-test.txt2662 26A1 ; fully-qualified # ⚡ high voltage

12