HomeSort by relevance Sort by last modified time
    Searched refs:len (Results 201 - 225 of 4801) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/wpa_supplicant/
driver_ndis_.c 46 * data (variable len, optional)
51 u8 *buf, size_t len)
57 wpa_hexdump(MSG_MSGDUMP, "NDIS: received event data", buf, len);
58 if (len < sizeof(int))
64 if (buf + len - pos > 2) {
67 if (data_len > (size_t) (buf + len - pos)) {
99 DWORD len; local
102 if (ReadFile(drv->events_pipe, buf, sizeof(buf), &len, NULL))
103 wpa_driver_ndis_event_process(drv, buf, len);
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
aes.h 18 void * aes_encrypt_init(const u8 *key, size_t len);
21 void * aes_decrypt_init(const u8 *key, size_t len);
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ndis_.c 43 * data (variable len, optional)
48 u8 *buf, size_t len)
54 wpa_hexdump(MSG_MSGDUMP, "NDIS: received event data", buf, len);
55 if (len < sizeof(int))
61 if (buf + len - pos > 2) {
64 if (data_len > (size_t) (buf + len - pos)) {
96 DWORD len; local
99 if (ReadFile(drv->events_pipe, buf, sizeof(buf), &len, NULL))
100 wpa_driver_ndis_event_process(drv, buf, len);
  /hardware/broadcom/wlan/bcm4329/src/dhd/exe/
dhdu_cmd.h 47 extern int dhd_get(void *dhd, int cmd, void *buf, int len);
48 extern int dhd_set(void *dhd, int cmd, void *buf, int len);
  /packages/apps/IM/libwbxml/include/
wbxml_encoder.h 30 virtual void wbxmlData(const char *data, uint32_t len) = 0;
58 virtual EncoderError characters(const char *chars, int len) = 0;
68 static bool parseUint(const char * s, int len, uint32_t *res);
74 EncoderError encodeInteger(const char *chars, int len);
75 EncoderError encodeDatetime(const char *chars, int len);
76 void encodeInlinedStr(const char *s, int len);
89 void appendResult(const char *s, int len)
91 mResult.append(s, len);
  /system/core/include/mincrypt/
rsa.h 41 int len; /* Length of n[] in number of uint32_t */ member in struct:RSAPublicKey
49 const int len,
  /system/vold/
Loop.h 29 static int lookupActive(const char *id, char *buffer, size_t len);
30 static int create(const char *id, const char *loopFile, char *loopDeviceBuffer, size_t len);
  /external/openssl/crypto/des/
enc_read.c 87 int DES_enc_read(int fd, void *buf, int len, DES_key_schedule *sched,
122 if (unnet_left < len)
136 memcpy(buf,&(unnet[unnet_start]),len);
137 unnet_start+=len;
138 unnet_left-=len;
139 i=len;
145 if (len > MAXWRITE) len=MAXWRITE;
185 if (len < num)
191 memcpy(buf,unnet,len);
    [all...]
  /external/elfutils/libebl/
eblwstrtab.c 40 size_t len; member in struct:Ebl_WStrent
91 ret->null.len = 1;
100 morememory (struct Ebl_WStrtab *st, size_t len)
104 if (len < ps)
105 len = ps;
106 newmem = (struct memoryblock *) malloc (len);
113 st->left = len - offsetof (struct memoryblock, memory);
136 newstring (struct Ebl_WStrtab *st, const wchar_t *str, size_t len)
149 if (st->left < align + sizeof (struct Ebl_WStrent) + len * sizeof (wchar_t))
152 sizeof (struct Ebl_WStrent) + len * sizeof (wchar_t))
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
cacheflush.h 27 #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
31 #define copy_to_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
32 #define copy_from_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
  /dalvik/libcore/crypto/src/main/java/javax/crypto/spec/
IvParameterSpec.java 53 * Creates a new <code>IvParameterSpec</code> instance with <code>len</code>
61 * @param len
65 * <code>len</code> do not specify a valid chunk in the
68 * if <code>offset</code> or <code>len</code> are negative.
70 public IvParameterSpec(byte[] iv, int offset, int len) {
71 if ((iv == null) || (iv.length - offset < len)) {
75 if (offset < 0 || len < 0) {
78 this.iv = new byte[len];
79 System.arraycopy(iv, offset, this.iv, 0, len);
  /external/astl/src/
streambuf.cpp 49 const streamsize len = std::min(avail, remaining); local
50 traits_type::copy(this->pptr(), str, len);
51 written += len;
52 str += len;
53 this->pbump(len);
  /external/dropbear/libtomcrypt/src/modes/ecb/
ecb_decrypt.c 24 @param len The number of octets to process (must be multiple of the cipher block size)
28 int ecb_decrypt(const unsigned char *ct, unsigned char *pt, unsigned long len, symmetric_ECB *ecb)
37 if (len % cipher_descriptor[ecb->cipher].block_length) {
43 return cipher_descriptor[ecb->cipher].accel_ecb_decrypt(ct, pt, len / cipher_descriptor[ecb->cipher].block_length, &ecb->key);
45 while (len) {
51 len -= cipher_descriptor[ecb->cipher].block_length;
ecb_encrypt.c 24 @param len The number of octets to process (must be multiple of the cipher block size)
28 int ecb_encrypt(const unsigned char *pt, unsigned char *ct, unsigned long len, symmetric_ECB *ecb)
37 if (len % cipher_descriptor[ecb->cipher].block_length) {
43 return cipher_descriptor[ecb->cipher].accel_ecb_encrypt(pt, ct, len / cipher_descriptor[ecb->cipher].block_length, &ecb->key);
45 while (len) {
51 len -= cipher_descriptor[ecb->cipher].block_length;
  /external/v8/src/
snapshot-common.cc 40 bool Snapshot::Deserialize(const byte* content, int len) {
41 SnapshotByteSource source(content, len);
49 int len; local
50 byte* str = ReadBytes(snapshot_file, &len);
52 Deserialize(str, len);
  /external/webkit/WebCore/WebCore.gyp/scripts/
action_useragentstylesheets.py 55 while len(args) > 0:
58 dashes = len(args)
65 if dashes + 1 == len(args):
79 assert len(sections) == 2
82 assert len(outputs) == 2
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
cacheflush.h 27 #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
31 #define copy_to_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
32 #define copy_from_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
cacheflush.h 27 #define flush_icache_user_range(vma,pg,adr,len) do { } while (0)
31 #define copy_to_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
32 #define copy_from_user_page(vma, page, vaddr, dst, src, len) memcpy(dst, src, len)
  /packages/apps/IM/libwbxml/src/
imps_encoder.cpp 104 EncoderError ImpsWbxmlEncoder::characters(const char *chars, int len)
106 if (chars == NULL || len < 0) {
109 if (!len) {
112 while (len && isXmlWhitespace(*chars)) {
114 len--;
116 while (len && isXmlWhitespace(chars[len - 1])) {
117 len--;
119 if (!len) {
124 return encodeInteger(chars, len);
    [all...]
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis2/
Visualization2RS.java 33 int len = MediaPlayer.snoop(mVizData, 0); local
36 if (len > outlen) len = outlen;
38 if (len == 0) {
50 for(int i = 0; i < len; i++) {
  /sdk/emulator/tools/
qemu-props.c 86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1); local
88 if (len < 0 || len > BUFF_SIZE-1)
91 temp[len] = '\0'; /* zero-terminate string */
93 DD("received: %.*s", len, temp);
  /system/core/libcutils/
properties.c 79 int len; local
81 len = __system_property_get(key, value);
82 if(len > 0) {
83 return len;
87 len = strlen(default_value);
88 memcpy(value, default_value, len + 1);
90 return len;
179 int len = -1; local
188 len = strlen(value);
190 return len;
302 int len; local
336 int len; local
    [all...]
  /external/opencore/oscl/oscl/osclutil/src/
oscl_string_rep.h 97 OSCL_IMPORT_REF void set(const char* cp, uint32 len);
98 OSCL_IMPORT_REF void set(const oscl_wchar* cp, uint32 len);
99 OSCL_IMPORT_REF void append(const char* cp, uint32 len);
100 OSCL_IMPORT_REF void append(const oscl_wchar* cp, uint32 len);
119 OSCL_IMPORT_REF void set_w(char* cp, uint32 len, uint32 maxlen);
120 OSCL_IMPORT_REF void set_w(oscl_wchar* cp, uint32 len, uint32 maxlen);
121 OSCL_IMPORT_REF void set_r(const char* cp, uint32 len);
122 OSCL_IMPORT_REF void set_r(const oscl_wchar* cp, uint32 len);
123 OSCL_IMPORT_REF void append(const char* cp, uint32 len);
124 OSCL_IMPORT_REF void append(const oscl_wchar* cp, uint32 len);
    [all...]
  /external/openssl/crypto/engine/
eng_fat.c 97 static int int_def_cb(const char *alg, int len, void *arg)
100 if (!strncmp(alg, "ALL", len))
102 else if (!strncmp(alg, "RSA", len))
104 else if (!strncmp(alg, "DSA", len))
106 else if (!strncmp(alg, "ECDH", len))
108 else if (!strncmp(alg, "ECDSA", len))
110 else if (!strncmp(alg, "DH", len))
112 else if (!strncmp(alg, "RAND", len))
114 else if (!strncmp(alg, "CIPHERS", len))
116 else if (!strncmp(alg, "DIGESTS", len))
    [all...]
  /external/qemu/
softmmu-semi.h 37 static void *softmmu_lock_user(CPUState *env, uint32_t addr, uint32_t len,
42 p = malloc(len);
44 cpu_memory_rw_debug(env, addr, p, len, 0);
47 #define lock_user(type, p, len, copy) softmmu_lock_user(env, p, len, copy)
64 target_ulong len)
66 if (len)
67 cpu_memory_rw_debug(env, addr, p, len, 1);
70 #define unlock_user(s, args, len) softmmu_unlock_user(env, s, args, len)
    [all...]

Completed in 1961 milliseconds

1 2 3 4 5 6 7 891011>>