/external/openssh/ |
sshconnect2.c | 466 input_userauth_error(int type, u_int32_t seq, void *ctxt) 474 input_userauth_banner(int type, u_int32_t seq, void *ctxt) 496 input_userauth_success(int type, u_int32_t seq, void *ctxt) 516 input_userauth_success_unexpected(int type, u_int32_t seq, void *ctxt) 529 input_userauth_failure(int type, u_int32_t seq, void *ctxt) 551 input_userauth_pk_ok(int type, u_int32_t seq, void *ctxt) 1028 input_userauth_jpake_server_step1(int type, u_int32_t seq, void *ctxt) 1096 input_userauth_jpake_server_step2(int type, u_int32_t seq, void *ctxt) 1143 input_userauth_jpake_server_confirm(int type, u_int32_t seq, void *ctxt) [all...] |
kex.c | 155 kex_protocol_error(int type, u_int32_t seq, void *ctxt) 157 error("Hm, kex protocol error: type %d seq %u", type, seq); 227 kex_input_kexinit(int type, u_int32_t seq, void *ctxt)
|
/external/bluetooth/bluedroid/stack/avdt/ |
avdt_scb_act.c | 241 UINT16 seq; local 253 BE_STREAM_TO_UINT16(seq, p); 293 p_data->p_pkt->layer_specific = seq; 308 p_scb->media_buf_len,time_stamp,seq,m_pt,marker); local 412 UINT16 seq; local 565 BE_STREAM_TO_UINT16(seq, p_payload); 611 payload_len, time_stamp, seq, m_pt, marker); local [all...] |
/external/wpa_supplicant_8/src/drivers/ |
driver_bsd.c | 323 const unsigned char *addr, int key_idx, int set_tx, const u8 *seq, 391 if (seq) { 400 keyrsc[WPA_KEY_RSC_LEN - i - 1] = seq[i]; 402 os_memcpy(&wk.ik_keyrsc, seq, seq_len); 690 u8 *seq) 719 seq[i] = tmp[WPA_KEY_RSC_LEN - i - 1]; 723 memcpy(seq, &wk.ik_keytsc, sizeof(wk.ik_keytsc)); [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
basicportallocator.cc | 477 AllocationSequence * seq, 501 PortData data(port, seq); 587 void BasicPortAllocatorSession::OnProtocolEnabled(AllocationSequence* seq, 592 if (it->sequence() != seq) 612 AllocationSequence* seq) { [all...] |
/frameworks/base/services/input/ |
InputDispatcher.h | 537 const uint32_t seq; // unique sequence number, never 0 member in struct:android::InputDispatcher::DispatchEntry 602 uint32_t seq; member in struct:android::InputDispatcher::CommandEntry 828 DispatchEntry* findWaitQueueEntry(uint32_t seq); [all...] |
/external/blktrace/ |
blkparse.c | 457 #define IN_SKIP(sip,seq) (((sip)->start <= (seq)) && ((seq) <= sip->end)) 458 static int check_current_skips(struct per_cpu_info *pci, unsigned long seq) 463 if (IN_SKIP(sip, seq)) { 464 if (sip->start == seq) { 465 if (sip->end == seq) 469 } else if (sip->end == seq) 472 sip->end = seq - 1; 473 insert_skip(pci, seq + 1, sip->end) [all...] |
/external/chromium/chrome/browser/sync/glue/ |
data_type_manager_impl2_unittest.cc | 111 InSequence seq; local 125 InSequence seq; local 333 InSequence seq; local
|
/external/chromium_org/ash/wm/ |
session_state_animator.cc | 295 virtual void OnLayerAnimationEnded(ui::LayerAnimationSequence* seq) 302 virtual void OnLayerAnimationAborted(ui::LayerAnimationSequence* seq) 309 virtual void OnLayerAnimationScheduled(ui::LayerAnimationSequence* seq)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/ |
layout_test_runner.py | 526 def split_at(seq, index): 527 return (seq[:index], seq[index:])
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
parser.h | [all...] |
/external/chromium_org/third_party/libxslt/libexslt/ |
date.c | 983 unsigned int seq = 0; local 1008 if (seq >= sizeof(desig)) 1013 if (seq <= 3) { 1014 seq = 3; 1018 } else if (seq == 3) 1028 while (seq < sizeof(desig)) { 1029 if (*cur == desig[seq]) { 1032 if ((num_type != 0) && (seq < (sizeof(desig)-1))) 1035 switch (seq) { 1044 dur->value.dur.sec += num * multi[seq]; [all...] |
/external/kernel-headers/original/linux/ |
netdevice.h | 993 extern void *dev_seq_start(struct seq_file *seq, loff_t *pos); 994 extern void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos); 995 extern void dev_seq_stop(struct seq_file *seq, void *v);
|
/external/libxml2/include/libxml/ |
parser.h | [all...] |
/external/opencv/ml/src/ |
mlrtrees.cpp | 656 cvStartReadSeq( trees_fnode->data.seq, &reader ); 657 if( reader.seq->total != ntrees ) 665 CV_NEXT_SEQ_ELEM( reader.seq->elem_size, reader );
|
/external/srec/srec/cfront/ |
sp_fft.c | 850 int place_sample_data(fft_info *fft, fftdata *seq, fftdata *smooth, int num) 858 ASSERT(seq); 865 fft->real[ii] = (fftdata)(seq[ii] * smooth[ii]);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
random.py | 272 def choice(self, seq): 274 return seq[int(self.random() * len(seq))] # raises IndexError if seq is empty
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_builtin.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
random.py | 272 def choice(self, seq): 274 return seq[int(self.random() * len(seq))] # raises IndexError if seq is empty
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_builtin.py | [all...] |
/external/chromium_org/sync/engine/ |
sync_scheduler_unittest.cc | 610 ::testing::InSequence seq; local 636 ::testing::InSequence seq; local 664 ::testing::InSequence seq; local 704 ::testing::InSequence seq; local 737 ::testing::InSequence seq; local 1182 ::testing::InSequence seq; local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/ |
PKCS10CertificationRequest.java | 386 ASN1Sequence seq = (ASN1Sequence)ASN1Primitive.fromByteArray(key.getEncoded()); local 387 this.reqInfo = new CertificationRequestInfo(subject, new SubjectPublicKeyInfo(seq), attributes);
|
/external/chromium_org/third_party/re2/re2/ |
parse.cc | 1528 StringPiece seq = *s; \/\/ \\p{Han} or \\pL local [all...] |
/external/chromium_org/v8/test/mjsunit/ |
debug-clearbreakpoint.js | 37 var base_request = '"seq":0,"type":"request","command":"clearbreakpoint"'
|
debug-evaluate-bool-constructor.js | 42 seq: 0,
|