Home
last modified time | relevance | path

Searched refs:turn_on (Results 1 – 12 of 12) sorted by relevance

/external/autotest/client/common_lib/
Dsmogcheck_ttci.py84 def TTCI_Set_Main_Power_Control(self, turn_on): argument
92 return self.pca_obj.setPCAcontrol('main_power', turn_on=turn_on)
94 def TTCI_Set_Backup_Power_Control(self, turn_on): argument
102 return self.pca_obj.setPCAcontrol('backup_power', turn_on=turn_on)
104 def TTCI_Set_Reset_Control(self, turn_on): argument
115 return self.pca_obj.setPCAcontrol('reset', turn_on=not(turn_on))
117 def TTCI_Set_PP_Control(self, turn_on): argument
125 return self.pca_obj.setPCAcontrol('pp', turn_on=turn_on)
127 def TTCI_Set_TPM_I2C_Control(self, turn_on): argument
135 return self.pca_obj.setPCAcontrol('tpm_i2c', turn_on=turn_on)
Dsmogcheck_pca9555.py86 def setPCAcontrol(self, key, turn_on): argument
96 logging.info('Attempt to set %r bit to %r', key, turn_on)
99 if turn_on:
/external/autotest/client/site_tests/hardware_TPMttci/
Dhardware_TPMttci.py154 if self.ttci_obj.TTCI_Set_Main_Power_Control(turn_on=True):
158 if self.ttci_obj.TTCI_Set_Main_Power_Control(turn_on=False):
165 if self.ttci_obj.TTCI_Set_Backup_Power_Control(turn_on=True):
169 if self.ttci_obj.TTCI_Set_Backup_Power_Control(turn_on=False):
176 if self.ttci_obj.TTCI_Set_PP_Control(turn_on=True):
180 if self.ttci_obj.TTCI_Set_PP_Control(turn_on=False):
187 if self.ttci_obj.TTCI_Set_TPM_I2C_Control(turn_on=True):
191 if self.ttci_obj.TTCI_Set_TPM_I2C_Control(turn_on=False):
197 if self.ttci_obj.TTCI_Set_Reset_Control(turn_on=True):
201 if self.ttci_obj.TTCI_Set_Reset_Control(turn_on=False):
/external/llvm-project/llvm/test/CodeGen/AVR/integration/
Dblink.ll13 ; void turn_on() {
25 ; turn_on();
50 ; CHECK-LABEL: turn_on
51 define void @turn_on() {
95 ; CHECK: call turn_on
96 call void @turn_on()
/external/ltp/testcases/kernel/syscalls/ioperm/
Dioperm02.c102 int turn_on; member
135 test_cases[i].num, test_cases[i].turn_on)); in main()
206 test_cases[0].turn_on = TURN_ON; in setup()
210 test_cases[1].turn_on = TURN_ON; in setup()
/external/ltp/android/include/sys/
Dio.h12 static inline int ioperm(unsigned long from, unsigned long num, int turn_on) in ioperm() argument
14 return syscall(__NR_ioperm, from, num, turn_on); in ioperm()
/external/autotest/client/site_tests/hardware_TPMTakeOwnership/
Dhardware_TPMTakeOwnership.py85 if self.ttci_obj.TTCI_Set_Reset_Control(turn_on=True):
94 if self.ttci_obj.TTCI_Set_Reset_Control(turn_on=False):
/external/zstd/zlibWrapper/
Dzstd_zlibwrapper.h41 void ZWRAP_useZSTDcompression(int turn_on);
DREADME.md39 - using the `void ZWRAP_useZSTDcompression(int turn_on)` function (declared in `#include "zstd_zlib…
Dzstd_zlibwrapper.c88 void ZWRAP_useZSTDcompression(int turn_on) { g_ZWRAP_useZSTDcompression = turn_on; } in ZWRAP_useZSTDcompression() argument
/external/autotest/server/cros/network/
Dwifi_client.py524 def powersave_switch(self, turn_on): argument
531 if turn_on:
/external/rust/crates/libc/src/unix/linux_like/linux/gnu/b64/x86_64/
Dmod.rs852 pub fn ioperm(from: ::c_ulong, num: ::c_ulong, turn_on: ::c_int) -> ::c_int; in ioperm()