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

12 3 4

  /external/chromium_org/media/video/capture/win/
video_capture_device_win.cc 24 // Check if a Pin matches a category.
25 bool PinMatchesCategory(IPin* pin, REFGUID category) {
26 DCHECK(pin);
29 HRESULT hr = ks_property.QueryFrom(pin);
42 // Check if a Pin's MediaType matches a given |major_type|.
43 bool PinMatchesMajorType(IPin* pin, REFGUID major_type) {
44 DCHECK(pin);
46 HRESULT hr = pin->ConnectionMediaType(&connection_media_type);
123 ScopedComPtr<IPin> pin; local
127 return pin;
    [all...]
filter_base_win.h 29 // Returns the IPin interface pin no index.
40 STDMETHOD(FindPin)(LPCWSTR id, IPin** pin);
pin_base_win.cc 16 explicit TypeEnumerator(PinBase* pin)
17 : pin_(pin),
68 // Get the media type from the pin.
126 // Called on an output pin to and establish a
141 // Called from an output pin on an input pin to and establish a
162 STDMETHODIMP PinBase::ConnectedTo(IPin** pin) {
163 *pin = connected_pin_;
  /external/chromium_org/remoting/host/
verify_config_window_win.cc 109 // Get the PIN length.
111 scoped_ptr<base::char16[]> pin(new base::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;
118 host_id_, base::UTF16ToUTF8(pin.get()));
  /external/chromium_org/remoting/protocol/
pairing_host_authenticator.h 26 const std::string& pin);
pairing_host_authenticator.cc 22 const std::string& pin)
26 pin_(pin),
  /external/chromium_org/remoting/webapp/browser_test/
browser_test.js 41 * "pin: '123123'"
184 browserTest.enterPIN = function(pin, opt_expectError) {
185 // Wait for 500ms before hitting the PIN button. From experiment, sometimes
186 // the PIN prompt does not dismiss without the timeout.
189 document.getElementById('pin-entry').value = pin;
192 browserTest.clickOnControl('pin-connect-button');
281 document.getElementById('daemon-pin-entry').value = newPin;
282 document.getElementById('daemon-pin-confirm').value = newPin;
283 browserTest.clickOnControl('daemon-pin-ok')
    [all...]
  /external/chromium_org/remoting/webapp/
host_setup_dialog.js 19 this.pin = '';
101 this.pinEntry_ = document.getElementById('daemon-pin-entry');
102 this.pinConfirm_ = document.getElementById('daemon-pin-confirm');
103 this.pinErrorDiv_ = document.getElementById('daemon-pin-error-div');
104 this.pinErrorMessage_ = document.getElementById('daemon-pin-error-message');
120 var form = document.getElementById('ask-pin-form');
125 document.getElementById('daemon-pin-confirm').focus();
150 * Show the dialog in order to get a PIN prior to starting the daemon. When the
231 * Show the dialog in order to change the PIN associated with a running daemon.
414 this.hostController_.start(this.flow_.pin, this.flow_.consent, onHostStarted
    [all...]
client_screen.js 221 * Shows PIN entry screen localized to include the host name, and registers
251 var pinForm = document.getElementById('pin-form');
253 var pinCancel = document.getElementById('cancel-pin-entry-button');
255 var rememberPin = document.getElementById('remember-pin');
257 var rememberPinCheckbox = document.getElementById('remember-pin-checkbox');
269 var pinField = document.getElementById('pin-entry');
270 var pin = pinField.value;
278 document.getElementById('pin-connect-button').focus();
281 onPinFetched(pin);
294 var message = document.getElementById('pin-message')
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_tabrestore.cc 93 bool pin,
108 if (pin) {
136 session_service->TabRestored(web_contents, pin);
browser_tab_restore_service_delegate.cc 58 bool pin,
64 pin, from_last_session, storage_namespace,
browser_tab_restore_service_delegate.h 39 bool pin,
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
sim_unlock_ui.cc 119 // for PIN input because PinRequired preference change was requested.
120 // SIM_NOT_LOCKED_CHANGE_PIN - SIM card is not locked, ask user for old PIN
121 // and new PIN to change it.
184 // Pending code input (PIN/PUK).
196 // Pass PIN/PUK code to shill and check status.
199 // Methods to invoke shill PIN/PUK D-Bus operations.
200 void ChangeRequirePin(bool require_pin, const std::string& pin);
201 void EnterPin(const std::string& pin);
209 // Called when an asynchronous PIN operation has completed.
212 // Single handler for PIN/PUK code operations
568 std::string pin; local
589 std::string pin; local
    [all...]
  /external/chromium_org/chromeos/dbus/
fake_shill_device_client.h 50 const std::string& pin,
55 const std::string& pin,
60 const std::string& pin,
shill_device_client.cc 108 const std::string& pin,
115 writer.AppendString(pin);
122 const std::string& pin,
128 writer.AppendString(pin);
135 const std::string& pin,
142 writer.AppendString(pin);
  /external/conscrypt/src/platform/java/org/conscrypt/
CertPinManager.java 74 // There was no entry in the pin list for this hostname.
91 // reread the pin file
98 PinListEntry pin = new PinListEntry(entry, certStore); local
99 entries.put(pin.getCommonName(), pin); local
101 log("Pinlist contains a malformed pin: " + entry, e);
122 // there's no pin list, all certs are unpinned
126 throw new PinManagerException("Unexpected error reading pin list; failing.", e);
  /external/chromium_org/chromeos/network/
fake_network_device_handler.cc 50 const std::string& pin,
56 const std::string& pin,
fake_network_device_handler.h 59 const std::string& pin,
65 const std::string& pin,
network_device_handler.h 117 // SIM PIN/PUK methods
119 // Tells the device whether or not a SIM PIN lock should be enforced by
120 // the device referenced by |device_path|. If |require_pin| is true, a PIN
121 // code (specified in |pin|) will be required before the next time the device
128 // - The PIN requirement status already matches |require_pin|.
129 // - |pin| doesn't match the PIN code currently stored by the SIM.
137 const std::string& pin,
141 // Sends the PIN code |pin| to the device |device_path|
    [all...]
network_device_handler_impl.h 67 const std::string& pin,
73 const std::string& pin,
  /external/chromium_org/remoting/tools/
native_messaging_host_test.py 50 pin = raw_input('Enter PIN: ')
53 'pin': pin}
119 ('Get PIN hash', BuildGetPinHash),
  /external/arduino/hardware/arduino/cores/arduino/
WProgram.h 22 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout = 1000000L);
  /external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
oi_bt_spec.h 164 /** amount of space allocated for a PIN (personal indentification number) in bytes */
167 /** data type for a PIN (PINs are treated as strings, so endianness does not apply.) */
169 OI_UINT8 pin[OI_BT_PIN_CODE_SIZE] ; /**< PIN represented as an array of 8-bit values */ member in struct:__anon5731
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_delegate.h 57 bool pin,
  /external/conscrypt/src/test/java/org/conscrypt/
TrustManagerImplTest.java 183 private TrustManagerImpl trustManager(X509Certificate ca, String hostname, X509Certificate pin)
185 // build the cert pin manager
186 CertPinManager cm = certManager(hostname, pin);
195 X509Certificate pin) throws Exception {
196 // build the cert pin manager
197 CertPinManager cm = certManager(hostname, pin);
216 private CertPinManager certManager(String hostname, X509Certificate pin) throws Exception {
218 if (pin != null) {
219 pinString = hostname + "=true|" + getFingerprint(pin);

Completed in 192 milliseconds

12 3 4