/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8460/ |
poc.c | 53 __u32 *handles; /* array of handles to pin/unpin */ 66 __u32 handles; /* array of handles to pin/unpin */ 144 struct nvmap_pin_handle_32 pin = {0}; local 145 pin.count = 2; 146 pin.handles = (unsigned int) handles; 153 ioctl(g_fd, NVMAP_IOC_PIN_MULT_32, &pin);
|
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/ |
CertificatePinning.java | 48 System.out.println(CertificatePinner.pin(certificate));
|
/external/u-boot/arch/arm/mach-exynos/ |
pinmux.c | 169 * card detect pin is used as a VDDEN signal to 383 int cfg = 0, pin = 0, i; local 388 pin = EXYNOS5_GPIO_A20; 392 pin = EXYNOS5_GPIO_A24; 396 pin = EXYNOS5_GPIO_B11; 400 pin = EXYNOS5_GPIO_F10; 410 for (i = pin; i < pin + 4; i++) 417 int cfg, pin, i; local 421 pin = EXYNOS5420_GPIO_A20 [all...] |
/external/u-boot/board/micronas/vct/ |
vct.h | 74 int top_set_pin(int pin, int func);
|
/external/wpa_supplicant_8/src/utils/ |
pcsc_funcs.h | 16 int scard_set_pin(struct scard_data *scard, const char *pin);
|
/device/google/contexthub/firmware/os/drivers/synaptics_s3708/ |
synaptics_s3708.c | 145 struct Gpio *pin; member in struct:TaskStruct 163 extiEnableIntGpio(mTask.pin, EXTI_TRIGGER_FALLING); 167 extiDisableIntGpio(mTask.pin); 176 if (!extiIsPendingGpio(data->pin)) { 182 extiClearPendingGpio(data->pin); 458 if (!gpioGet(mTask.pin)) { 576 mTask.pin = gpioRequest(TOUCH_PIN); 577 gpioConfigInput(mTask.pin, GPIO_SPEED_LOW, GPIO_PULL_NONE); 578 syscfgSetExtiPort(mTask.pin); 592 extiClearPendingGpio(mTask.pin); [all...] |
/device/linaro/bootloader/arm-trusted-firmware/plat/rockchip/rk3399/drivers/gpio/ |
rk3399_gpio.c | 58 #define GET_GPIO_PORT(pin) (pin / 32) 59 #define GET_GPIO_NUM(pin) (pin % 32) 60 #define GET_GPIO_BANK(pin) ((pin % 32) / 8) 61 #define GET_GPIO_ID(pin) ((pin % 32) % 8)
|
/external/wpa_supplicant_8/src/ap/ |
wps_hostapd.h | 21 const char *uuid, const char *pin, int timeout); 30 int hostapd_wps_ap_pin_set(struct hostapd_data *hapd, const char *pin,
|
/device/google/contexthub/firmware/os/drivers/hall_twopole/ |
hall_twopole.c | 121 static bool enableInterrupt(struct Gpio *pin, struct ChainedIsr *isr, IRQn_Type irqn) 123 gpioConfigInput(pin, GPIO_SPEED_LOW, GPIO_PULL_NONE); 124 syscfgSetExtiPort(pin); 125 extiEnableIntGpio(pin, EXTI_TRIGGER_BOTH); 130 static bool disableInterrupt(struct Gpio *pin, struct ChainedIsr *isr, IRQn_Type irqn) 133 extiDisableIntGpio(pin); 185 // report initial state of hall interrupt pin
|
/external/u-boot/drivers/pinctrl/ |
pinctrl-sti.c | 28 /* User-frendly defines for Pin Direction */ 48 unsigned char pin; member in struct:sti_pin_desc 62 int pin = pin_desc->pin; local 85 sysconf = bitfield_replace(sysconf, pin * 4, 3, alt); 89 /* pin configuration */ 103 * Specifically, the output-enable pin control register 104 * (SYS_CFG_3040) and the pull-up pin control register 108 * the open-drain pin control register (SYS_CFG_3060) 165 flashss = 1; /* pin is in the Flash Sub-System * [all...] |
/external/u-boot/board/gdsys/mpc8308/ |
strider.c | 289 void fpga_gpio_set(unsigned int bus, int pin) 291 FPGA_SET_REG(bus, gpio.set, pin); 294 void fpga_gpio_clear(unsigned int bus, int pin) 296 FPGA_SET_REG(bus, gpio.clear, pin); 299 int fpga_gpio_get(unsigned int bus, int pin) 305 return val & pin; 309 void fpga_control_set(unsigned int bus, int pin) 314 FPGA_SET_REG(bus, control, val | pin); 317 void fpga_control_clear(unsigned int bus, int pin) 322 FPGA_SET_REG(bus, control, val & ~pin); [all...] |
/external/openssh/ |
ssh-pkcs11-helper.c | 116 char *name, *pin; local 125 pin = get_string(NULL); 126 if ((nkeys = pkcs11_add_provider(name, pin, &keys)) > 0) { 141 free(pin); 150 char *name, *pin; local 155 pin = get_string(NULL); 161 free(pin);
|
authfd.h | 37 const char *pin, u_int life, u_int confirm);
|
/external/u-boot/arch/arm/mach-at91/include/mach/ |
gpio.h | 22 /* these pin numbers double as IRQ numbers, like AT91xxx_ID_* values */ 201 static inline void *pin_to_controller(unsigned pin) 203 pin -= PIN_BASE; 204 pin /= 32; 205 return (void *)(at91_pios[pin]); 208 static inline unsigned pin_to_mask(unsigned pin) 210 pin -= PIN_BASE; 211 return 1 << (pin % 32);
|
/external/u-boot/drivers/pinctrl/meson/ |
pinctrl-meson.c | 57 unsigned int pin, int sel_group) 69 if (group->pins[j] == pin) { 70 /* We have found a group using the pin */ 129 unsigned int pin; local 132 pin = priv->data->pin_base + offset; 135 if (pin >= priv->data->banks[i].first && 136 pin <= priv->data->banks[i].last) { 147 *bit = desc->bit + pin - bank->first;
|
/external/u-boot/arch/arm/mach-sunxi/ |
spl_spi_sunxi.c | 31 * The pin mixing part is SoC specific and only A10/A13/A20/H3/A64 are 92 unsigned int pin; local 94 for (pin = SUNXI_GPC(0); pin <= SUNXI_GPC(2); pin++) 95 sunxi_gpio_set_cfgpin(pin, pin_function);
|
/external/u-boot/drivers/pinctrl/renesas/ |
sh_pfc.h | 2 * SuperH Pin Function Controller Support 33 u16 pin; member in struct:sh_pfc_pin 57 * VIN_DATA_PIN_GROUP() is a macro used to describe the VIN pin groups 135 u16 pin; member in struct:pinmux_drive_reg_field 223 unsigned int (*get_bias)(struct sh_pfc *pfc, unsigned int pin); 224 void (*set_bias)(struct sh_pfc *pfc, unsigned int pin, 226 int (*pin_to_pocctrl)(struct sh_pfc *pfc, unsigned int pin, u32 *pocctrl); 262 sh_pfc_pin_to_bias_reg(const struct sh_pfc *pfc, unsigned int pin, 277 * Helper macros to create pin and port lists 345 * Describe a pinmux configuration for a single-function pin with GPI [all...] |
/cts/hostsidetests/devicepolicy/app/PasswordComplexity/src/com.android.cts.passwordcomplexity/ |
GetPasswordComplexityTest.java | 139 private void setPin(String pin) throws Exception { 140 String out = mDevice.executeShellCommand("cmd lock_settings set-pin " + pin); 141 if (!out.startsWith("Pin set to")) { 142 fail("Failed to set pin: " + out); 144 mScreenLock = pin;
|
/external/python/cpython3/Lib/idlelib/ |
percolator.py | 80 pin = p.insertfilter 86 (pin if var1.get() else pout)(t1) 88 (pin if var2.get() else pout)(t2)
|
/external/u-boot/drivers/gpio/ |
mxs_gpio.c | 118 unsigned bank, pin; local 126 pin = simple_strtoul(end + 1, NULL, 10); 128 return (bank << MXS_PAD_BANK_SHIFT) | (pin << MXS_PAD_PIN_SHIFT);
|
/external/u-boot/arch/arm/dts/ |
armada-8040-db.dts | 80 pin-func = < 1 1 1 1 1 1 1 1 1 1 110 pin-func = < 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 209 pin-func = < 0x3 0x3 0x3 0x3 0x3 0x3 0x3 0x3 0x3 0x3
|
/external/autotest/client/cros/chameleon/ |
chameleon_bluetooth_audio.py | 119 def pair_legacy_bluetooth_module(bt_adapter, target_mac_address, pin=_PIN, 127 @param pin: The pin for legacy pairing. 138 target_mac_address, pin, False, pairing_timeout):
|
/external/u-boot/arch/x86/lib/ |
mpspec.c | 145 int srcbus, int dev, int pin, int dstapic, int dstirq) 147 u8 srcbusirq = (dev << 2) | (pin - 1); 263 * there is only one entry with the given bus, device and interrupt pin. 266 int entry_num, int bus, int device, int pin) 273 intsrc->mpc_srcbusirq == ((device << 2) | (pin - 1))) 324 pr.pin = fdt_addr_to_cpu(cell[1]); 331 bus, dev, pr.pin)) { 333 bus, dev, 'A' + pr.pin - 1); 340 * For PIRQ which is connected to I/O APIC interrupt pin#0-15, 345 mp_write_pci_intsrc(mc, MP_INT, bus, dev, pr.pin, [all...] |
/external/u-boot/drivers/pinctrl/exynos/ |
pinctrl-exynos.c | 18 * conf: soc specific pin configuration data array 20 * base: base address of the pin controller. 35 /* given a pin-name, return the address of pin config registers */ 37 u32 *pin) 46 * The format of the pin name is <bank name>-<pin_number>. 47 * Example: gpa0-4 (gpa0 is the bank name and 4 is the pin number. 54 *pin = pin_name[++idx] - '0'; 56 /* lookup the pin bank data using the pin bank name * [all...] |
/external/wpa_supplicant_8/src/wps/ |
wps_registrar.c | 82 u8 *pin; member in struct:wps_uuid_pin 92 static void wps_free_pin(struct wps_uuid_pin *pin) 94 bin_clear_free(pin->pin, pin->pin_len); 95 os_free(pin); 99 static void wps_remove_pin(struct wps_uuid_pin *pin) 101 dl_list_del(&pin->list); 102 wps_free_pin(pin); 108 struct wps_uuid_pin *pin, *prev local 762 struct wps_uuid_pin *pin; local 857 struct wps_uuid_pin *pin, *prev; local 884 struct wps_uuid_pin *pin, *prev; local 912 struct wps_uuid_pin *pin, *prev; local 931 struct wps_uuid_pin *pin, *found = NULL; local 992 struct wps_uuid_pin *pin; local 1407 const u8 *pin; local [all...] |