/external/chromium/net/flip/ |
flip_stream.h | 63 // Reads the response body. Returns a net error code or the number of bytes 74 // Returns the number of bytes uploaded. 105 // |length| is the number of bytes received or an error. 108 bool OnDataReceived(const char* buffer, int bytes); 113 // |result| is the number of bytes written or a net error code.
|
/external/chromium/net/tools/flip_server/ |
flip_in_mem_edsm_server.cc | 496 // LOG(INFO) << "Adding file (" << visitor.body.length() << " bytes): " 829 int Send(const char* bytes, int len, int flags) { 830 return send(fd_, bytes, len, flags); 884 char* bytes; local 886 read_buffer_.GetWritablePtr(&bytes, &size); 889 bytes_read = SSL_read(ssl_, bytes, size); 891 bytes_read = recv(fd_, bytes, size, MSG_DONTWAIT); 909 VLOG(2) << "Read: " << bytes_read << " bytes from fd: " << fd_; 916 VLOG(2) << "0 bytes read with recv call."; 930 char* bytes; local 989 const char* bytes = data_frame.data; local 1417 char* bytes = frame->data(); local [all...] |
/external/clearsilver/util/ |
neo_misc.h | 130 UINT32 ne_crc (UINT8 *data, UINT32 bytes);
|
/external/dbus/dbus/ |
dbus-sysdeps-util-unix.c | 141 int bytes; local 159 bytes = _dbus_string_get_length (&pid); 160 if (_dbus_write_socket (print_pid_fd, &pid, 0, bytes) != bytes)
|
/external/elfutils/libasm/ |
asm_align.c | 55 /* Ensure there is enough room to add the fill bytes. */ 60 /* Fill in the bytes. We align the pattern according to the 70 = asmscn->pattern->bytes[byteptr++]; 102 /* Ensure there are at least LEN bytes available in the output buffer
|
libasm.h | 134 extern int asm_fill (AsmScn_t *asmscn, void *bytes, size_t len);
|
libasmP.h | 90 /* Currently used number of bytes in the block. */ 93 /* Number of bytes allocated. */ 107 char bytes[flexarr_size]; member in struct:AsmScn::FillPattern 231 /* Ensure there are at least LEN bytes available in the output buffer
|
/external/freetype/src/psaux/ |
psobjs.h | 113 FT_Byte* bytes,
|
/external/libffi/src/frv/ |
eabi.S | 39 # gr10: cif->bytes
|
/external/libffi/src/ia64/ |
ffi.c | 61 /* Adjust ADDR, a pointer to an 8 byte slot, to point to the low LEN bytes. */ 227 /* Adjust cif->bytes to include space for the bits of the ia64_args frame 231 cif->bytes += offsetof(struct ia64_args, gp_regs[0]); 232 if (cif->bytes < sizeof(struct ia64_args)) 233 cif->bytes = sizeof(struct ia64_args); 289 stack = alloca (cif->bytes);
|
/external/libvpx/vp8/common/ppc/ |
filter_bilinear_altivec.asm | 95 ;# input to filter is 9 bytes wide, output is 8 bytes. 111 ;# input to filter is 21 bytes wide, output is 16 bytes. 462 ;# input to filter is 21 bytes wide, output is 16 bytes. 502 ;# input to filter is 21 bytes wide, output is 16 bytes.
|
/external/openssl/crypto/ |
mem_dbg.c | 661 long bytes; member in struct:mem_leak_st 705 l->bytes+=m->num; 766 ml.bytes=0; 773 BIO_printf(b,"%ld bytes leaked in %d chunks\n", 774 ml.bytes,ml.chunks);
|
/external/qemu/ |
loader.c | 167 uint32_t a_text; /* length of text, in bytes */ 168 uint32_t a_data; /* length of data, in bytes */ 169 uint32_t a_bss; /* length of uninitialized data area, in bytes */ 170 uint32_t a_syms; /* length of symbol table data in file, in bytes */ 172 uint32_t a_trsize; /* length of relocation info for text, in bytes */ 173 uint32_t a_drsize; /* length of relocation info for data, in bytes */ 306 /* return < 0 if error, otherwise the number of bytes loaded in memory */ 515 ssize_t bytes; local 521 bytes = gunzip(data, max_bytes, compressed_data, hdr->ih_size); 523 if (bytes < 0) [all...] |
/external/webkit/WebKit/mac/Plugins/ |
WebBaseNetscapePluginStream.h | 81 void didReceiveData(WebCore::NetscapePlugInStreamLoader*, const char* bytes, int length);
|
/external/zlib/contrib/untgz/ |
untgz.c | 529 unsigned int bytes = (remaining > BLOCKSIZE) ? BLOCKSIZE : remaining; local 533 if (fwrite(&buffer,sizeof(char),bytes,outfile) != bytes) 542 remaining -= bytes;
|
/frameworks/base/services/audioflinger/ |
A2dpAudioInterface.cpp | 271 ssize_t A2dpAudioInterface::A2dpAudioStreamOut::write(const void* buffer, size_t bytes) 275 size_t remaining = bytes; 301 return bytes; 305 usleep(((bytes * 1000 )/ frameSize() / sampleRate()) * 1000);
|
A2dpAudioInterface.h | 91 virtual ssize_t write(const void* buffer, size_t bytes);
|
AudioHardwareGeneric.cpp | 231 ssize_t AudioStreamOutGeneric::write(const void* buffer, size_t bytes) 234 return ssize_t(::write(mFd, buffer, bytes)); 341 ssize_t AudioStreamInGeneric::read(void* buffer, ssize_t bytes) 348 return ::read(mFd, buffer, bytes);
|
/hardware/broadcom/wlan/bcm4329/src/include/ |
linux_osl.h | 247 #define PKTPUSH(osh, skb, bytes) skb_push((struct sk_buff*)(skb), (bytes)) 248 #define PKTPULL(osh, skb, bytes) skb_pull((struct sk_buff*)(skb), (bytes))
|
/hardware/msm7k/libaudio-qdsp5v2/ |
AudioHardware.h | 113 virtual ssize_t write(const void* buffer, size_t bytes);
|
/hardware/qcom/media/mm-core/omxcore/src/common/ |
omx_core_cmp.cpp | 253 OMX_IN OMX_U32 bytes, 266 bytes, 279 OMX_IN OMX_U32 bytes) 288 eRet = pThis->allocate_buffer(hComp,bufferHdr,port,appData,bytes);
|
/libcore/dalvik/src/main/java/dalvik/system/ |
BlockGuard.java | 162 public long read(int fileDescriptor, byte[] bytes, int offset, int length) 165 return mFileSystem.read(fileDescriptor, bytes, offset, length); 168 public long write(int fileDescriptor, byte[] bytes, int offset, int length) 171 return mFileSystem.write(fileDescriptor, bytes, offset, length);
|
/libcore/luni/src/main/java/org/apache/harmony/security/x501/ |
AttributeTypeAndValue.java | 432 out.content = av.bytes; 451 av.bytes = (byte[]) out.content; 454 av.bytes = av.rawString.getBytes(Charsets.UTF_8); 455 out.length = av.bytes.length;
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
Certificate.java | 151 ((BitString) values[2]).bytes, // FIXME keep as BitString object
|
CertificateList.java | 147 ((BitString) values[2]).bytes, // FIXME keep as BitString object
|