HomeSort by relevance Sort by last modified time
    Searched refs:pin (Results 26 - 50 of 244) sorted by null

12 3 4 5 6 7 8 910

  /external/skia/src/utils/android/
ashmem.cpp 69 struct ashmem_pin pin = { offset, len }; local
70 return ioctl(fd, ASHMEM_PIN, &pin);
75 struct ashmem_pin pin = { offset, len }; local
76 return ioctl(fd, ASHMEM_UNPIN, &pin);
  /system/core/libcutils/
ashmem-dev.c 77 struct ashmem_pin pin = { offset, len }; local
78 return ioctl(fd, ASHMEM_PIN, &pin);
83 struct ashmem_pin pin = { offset, len }; local
84 return ioctl(fd, ASHMEM_UNPIN, &pin);
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_connect.py 19 print " -a <addr> [-p <pin>] [-g <go_intent>] \ "
25 print " -p = pin number (8 digits)"
66 global pin
79 pin,wps_method,go_intent):
86 self.pin = pin
155 # Display requires a pin, and a go intent of 15
157 if (self.pin != None):
158 self.p2p_connect_arguements.update({'pin':self.pin})
228 pin = None variable in class:P2P_Connect
    [all...]
  /external/qemu/telephony/
sim_card.c 27 char pin[ A_SIM_PIN_SIZE+1 ]; member in struct:ASimCardRec_
45 strncpy( card->pin, "0000", sizeof(card->pin) );
79 return sim->pin;
89 asimcard_set_pin( ASimCard sim, const char* pin )
91 strncpy( sim->pin, pin, A_SIM_PIN_SIZE );
104 asimcard_check_pin( ASimCard sim, const char* pin )
110 if ( !strcmp( sim->pin, pin ) ) {
    [all...]
  /external/chromium_org/remoting/tools/
register_host.py 55 pin = getpass.getpass("Host PIN: ")
56 if len(pin) < 4:
57 print "PIN must be at least 4 characters long."
59 pin2 = getpass.getpass("Confirm host PIN: ")
60 if pin2 != pin:
65 hmac.new(str(host_id), pin, hashlib.sha256).digest())
  /external/chromium_org/third_party/skia/src/core/
SkDeviceProfile.cpp 19 static float pin(float value, float min, float max) { function
30 fGammaExponent = pin(gammaExp, 0, 10);
31 fContrastScale = pin(contrast, 0, 1);
  /external/skia/src/core/
SkDeviceProfile.cpp 19 static float pin(float value, float min, float max) { function
30 fGammaExponent = pin(gammaExp, 0, 10);
31 fContrastScale = pin(contrast, 0, 1);
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pProvDiscEvent.java 44 public String pin; field in class:WifiP2pProvDiscEvent
55 * P2P-PROV-DISC-ENTER-PIN 42:fc:89:e1:e2:27
56 * P2P-PROV-DISC-SHOW-PIN 42:fc:89:e1:e2:27 44490607
70 else if (tokens[0].endsWith("ENTER-PIN")) event = ENTER_PIN;
71 else if (tokens[0].endsWith("SHOW-PIN")) event = SHOW_PIN;
79 pin = tokens[2];
87 sbuf.append("\n pin: ").append(pin);
  /libcore/crypto/src/main/java/org/conscrypt/
PinListEntry.java 31 * This class represents a single entry in the pin file.
69 // entry must have a CN, an enforcement value, and at least one pin
71 throw new PinEntryException("Received malformed pin entry");
91 * Checks the given chain against the pin list corresponding to this entry.
93 * If the pin list does not contain the required certs and the enforcing field is true then
120 for (String pin : pins) {
121 validatePin(pin);
126 private static void validatePin(String pin) {
128 if (pin.length() != 128) {
129 throw new IllegalArgumentException("Pin is not a valid length")
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_tabrestore.h 30 // extension. If |pin| is true and |tab_index|/ is the last pinned tab, then
43 bool pin,
  /external/chromium_org/remoting/host/
verify_config_window_win.cc 109 // Get the PIN length.
111 scoped_ptr<char16[]> pin(new char16[pin_length + 1]);
113 // Get the PIN making sure it is NULL terminated even if an error occurs.
114 int result = pin_edit.GetWindowText(pin.get(), pin_length + 1);
115 pin[std::min(result, pin_length)] = 0;
117 return VerifyHostPinHash(host_secret_hash_, host_id_, UTF16ToUTF8(pin.get()));
  /external/chromium_org/remoting/protocol/
pairing_client_authenticator.h 32 const std::string& pin);
pairing_client_authenticator.cc 51 // the host will accept the client id or request that we fall back to the PIN.
63 const std::string& pin) {
67 authentication_tag_, pin),
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve5x5.cpp 357 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
366 const uchar4 *py0 = (const uchar4 *)(pin + stride * y0);
367 const uchar4 *py1 = (const uchar4 *)(pin + stride * y1);
368 const uchar4 *py2 = (const uchar4 *)(pin + stride * y2);
369 const uchar4 *py3 = (const uchar4 *)(pin + stride * y3);
370 const uchar4 *py4 = (const uchar4 *)(pin + stride * y4);
406 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
415 const uchar2 *py0 = (const uchar2 *)(pin + stride * y0);
416 const uchar2 *py1 = (const uchar2 *)(pin + stride * y1);
417 const uchar2 *py2 = (const uchar2 *)(pin + stride * y2)
455 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
504 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
553 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
602 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
    [all...]
  /external/chromium_org/remoting/host/mac/
me2me_preference_pane.h 81 pin:(NSString*)pin;
112 // Alert the user that the typed PIN is incorrect.
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.h 20 const char *uuid, const char *pin, int timeout);
29 int hostapd_wps_ap_pin_set(struct hostapd_data *hapd, const char *pin,
  /external/wpa_supplicant_8/wpa_supplicant/
wps_supplicant.h 35 const char *pin, int p2p_group, u16 dev_pw_id);
38 const char *pin, struct wps_new_ap_settings *settings);
52 const char *uuid, const char *pin);
55 const char *pin);
59 const char *pin, struct wps_new_ap_settings *settings);
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
filterbanks.c 115 void WebRtcIsacfix_SplitAndFilter1(WebRtc_Word16 *pin,
132 WebRtcIsacfix_HighpassFilterFixDec32(pin, FRAMESAMPLES, WebRtcIsacfix_kHpStCoeffInQ30, prefiltdata->HPstates_fix);
137 tempin_ch1[QLOOKAHEAD + k] = pin[1+WEBRTC_SPL_MUL_16_16(2, k)];
141 prefiltdata->INLABUF1_fix[k]=pin[FRAMESAMPLES+1-WEBRTC_SPL_MUL_16_16(2, QLOOKAHEAD)+WEBRTC_SPL_MUL_16_16(2, k)];
147 tempin_ch2[QLOOKAHEAD+k] = pin[WEBRTC_SPL_MUL_16_16(2, k)];
151 prefiltdata->INLABUF2_fix[k]=pin[FRAMESAMPLES-WEBRTC_SPL_MUL_16_16(2, QLOOKAHEAD)+WEBRTC_SPL_MUL_16_16(2, k)];
186 void WebRtcIsacfix_SplitAndFilter2(WebRtc_Word16 *pin,
202 WebRtcIsacfix_HighpassFilterFixDec32(pin, FRAMESAMPLES, WebRtcIsacfix_kHpStCoeffInQ30, prefiltdata->HPstates_fix);
207 tempin_ch1[k] = pin[1+WEBRTC_SPL_MUL_16_16(2, k)];
213 tempin_ch2[k] = pin[WEBRTC_SPL_MUL_16_16(2, k)]
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
most_visited_page.css 93 .edit-bar > .pin,
101 .edit-bar > .pin {
105 .edit-bar > .pin:hover {
109 .edit-bar > .pin:active {
113 .pinned .edit-bar > .pin {
117 .pinned .edit-bar > .pin:hover {
121 .pinned .edit-bar > .pin:active {
  /external/chromium_org/chromeos/dbus/
fake_shill_device_client.cc 55 const std::string& pin,
62 const std::string& pin,
69 const std::string& pin,
fake_shill_device_client.h 45 const std::string& pin,
50 const std::string& pin,
55 const std::string& pin,
mock_shill_device_client.h 46 const std::string& pin,
51 const std::string& pin,
56 const std::string& pin,
shill_device_client.h 111 const std::string& pin,
119 const std::string& pin,
127 const std::string& pin,
  /external/chromium/chrome/browser/sessions/
tab_restore_service_delegate.h 45 bool pin,
  /external/chromium/chrome/browser/ui/
browser_tab_restore_service_delegate.h 42 bool pin,

Completed in 657 milliseconds

12 3 4 5 6 7 8 910