/hardware/bsp/intel/peripheral/sensors/mraa/sensors/ |
GroveLight.cpp | 48 GroveLight::GroveLight(int pollFd, int pin) : upm::GroveLight(pin), pollFd(pollFd) {
|
GroveTemperature.cpp | 48 GroveTemperature::GroveTemperature(int pollFd, int pin) : upm::GroveTemp(pin), pollFd(pollFd) {
|
ProximityGPIO.cpp | 32 * The mraa library expects the Arudino sheild pin number here when 34 * using a different GPIO pin or different Edison breakout board. 69 ProximityGPIO::ProximityGPIO(int pollFd, int pin) : upm::GroveButton(pin), pollFd(pollFd) {
|
GroveLight.hpp | 36 * @param pin number of the analog input 38 GroveLight(int pollFd, int pin);
|
GroveTemperature.hpp | 36 * @param pin number of the analog input 38 GroveTemperature(int pollFd, int pin);
|
ProximityGPIO.hpp | 36 * @param pin number of the analog input 38 ProximityGPIO(int pollFd, int pin);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/ |
WpsPinFragment.java | 27 * Displays a UI for showing that the user must enter a PIN for WPS to continue 31 private static final String KEY_PIN = "pin"; 33 public static WpsPinFragment newInstance(String pin) { 36 args.putString(KEY_PIN, pin);
|
/hardware/bsp/intel/peripheral/libupm/src/grovewfs/ |
grovewfs.h | 72 * @param pin Digital pin to use 74 GroveWFS(int pin);
|
/hardware/bsp/intel/peripheral/libupm/src/mg811/ |
mg811.h | 64 * on the sensor will light, and the digital pin will be driven 76 * @param pin Analog pin to use 77 * @param dpin Digital pin that indicates threshold 80 MG811(int pin, int dpin, float aref=5.0); 105 * Returns the voltage detected on the analog pin 122 * Read the digital pin and return true if the set threshold has
|
/hardware/bsp/intel/peripheral/libupm/src/wheelencoder/ |
wheelencoder.h | 53 * When you instantiate a class of this type, the gpio pin specified 55 * occurs on the gpio pin, the internal counter is incremented by 70 * @param pin Digital pin to use 72 WheelEncoder(int pin);
|
/external/skia/src/core/ |
SkDeviceProfile.cpp | 17 static float pin(float value, float min, float max) { function 28 fGammaExponent = pin(gammaExp, 0, 10); 29 fContrastScale = pin(contrast, 0, 1);
|
/hardware/bsp/intel/peripheral/examples/mraa/gpio_output/ |
OutputGPIO.cpp | 18 * This is an example to set/clear a GPIO pin using the MRAA library. 20 * directly connected to the GPIO pin and ground, 39 int pin; member in struct:pgm_options 48 {"pin", no_argument, NULL, 'p'}, 58 printf("Manipulate a GPIO pin\n"); 81 options->pin = atoi(optarg); 108 mraa_gpio_context m_gpio = mraa_gpio_init(options.pin); 110 fprintf(stderr, "Unable to initialize GPIO, invalid pin number?\n");
|
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
pwm.hpp | 45 * instanciates a PWM object on a pin 47 * @param pin the pin number used on your board 48 * @param owner if you are the owner of the pin the destructor will 50 * unexport the pin from sysfs, default behaviour is you are the owner 53 Pwm(int pin, bool owner = true, int chipid = -1) 56 m_pwm = mraa_pwm_init(pin); 58 m_pwm = mraa_pwm_init_raw(chipid, pin); 62 throw std::invalid_argument("Error initialising PWM on pin"); 170 * Set the enable status of the PWM pin. None zero will assume on wit [all...] |
/hardware/bsp/intel/peripheral/libupm/examples/c++/ |
hm11.cxx | 43 cout << "If no argument is used, then the address and PIN of the module" 103 char pin[] = "AT+PASS?"; local 104 cout << "Querying module PIN (" << pin << ")..." << endl; 105 sendCommand(ble, pin);
|
/hardware/bsp/intel/peripheral/libupm/examples/java/ |
HM11Sample.java | 44 System.out.println("If no argument is used, then the address and PIN of the module"); 87 String pin = "AT+PASS?"; local 88 System.out.println("Querying module pin (" + pin + ")..."); 89 sendCommand(ble, pin.getBytes());
|
/hardware/bsp/intel/peripheral/libupm/examples/javascript/ |
hm11.js | 42 "If no argument is used, then the address and PIN of the module\n" + 108 var pin = "AT+PASS?"; 109 console.log("Querying module PIN (" + pin + ")..."); 110 sendCommand(my_ble_obj, pin);
|
/hardware/bsp/intel/peripheral/libupm/examples/python/ |
hm11.py | 96 pin = "AT+PASS?"; variable 97 print "Querying module PIN (" + pin + ")..." 98 sendCommand(my_ble_obj, pin)
|
/system/connectivity/shill/cellular/ |
mock_modem_gsm_card_proxy.h | 47 MOCK_METHOD5(EnablePIN, void(const std::string& pin, bool enabled, 50 MOCK_METHOD4(SendPIN, void(const std::string& pin, 53 MOCK_METHOD5(SendPUK, void(const std::string& puk, const std::string& pin,
|
modem_gsm_card_proxy_interface.h | 45 virtual void EnablePIN(const std::string& pin, bool enabled, 48 virtual void SendPIN(const std::string& pin, 51 virtual void SendPUK(const std::string& puk, const std::string& pin,
|
/system/connectivity/shill/dbus/ |
chromeos_mm1_sim_proxy.h | 39 void SendPin(const std::string& pin, 44 const std::string& pin, 48 void EnablePin(const std::string& pin,
|
/external/conscrypt/src/platform/java/org/conscrypt/ |
PinListEntry.java | 30 * This class represents a single entry in the pin file. 66 // entry must have a CN, an enforcement value, and at least one pin 68 throw new PinEntryException("Received malformed pin entry"); 88 * Checks the given chain against the pin list corresponding to this entry. 122 for (String pin : pins) { 123 validatePin(pin); 128 private static void validatePin(String pin) { 130 if (pin.length() != 128) { 131 throw new IllegalArgumentException("Pin is not a valid length"); 135 new BigInteger(pin, 16) [all...] |
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/ |
RestrictedProfilePinDialogFragment.java | 33 void saveLockPassword(String pin, int quality); 50 * Returns the time until we should disable the PIN dialog (because the user input wrong 59 * Saves the time until we should disable the PIN dialog (because the user input wrong PINs 78 public void setPin(String pin) { 91 callback.saveLockPassword(pin, DevicePolicyManager.PASSWORD_QUALITY_SOMETHING); 96 public boolean isPinCorrect(String pin) { 111 callback.checkPassword(pin, myUserInfo.restrictedProfileParentId);
|
/external/autotest/client/site_tests/kernel_Lmbench/ |
kernel_Lmbench.py | 64 To improve determinism, we sometimes use taskset to pin to a CPU and
|
/external/autotest/server/cros/ |
usb_mux_controller.py | 23 # Values passed to each GPIO pin to enable a specific port. 89 def enable_gpio_pins(self, pin): 91 Enables the given GPIO pin by exporting the pin and setting the 94 @param pin: GPIO pin to be enabled. 97 if 'gpio' + pin not in self.host.servo.system_output(LS_GPIO_DIRECTORY): 98 self.host.servo.system(EXPORT_GPIO_PIN % pin) 99 self.host.servo.system(SET_GPIO_DIRECTION % pin)
|
/external/icu/icu4c/source/i18n/ |
smallintformatter.h | 32 int32_t pin(int32_t digitCount) const;
|