Searched refs:actualLength (Results 1 - 3 of 3) sorted by relevance

/dalvik/libdex/
H A DSysUtil.c280 size_t fileLength, actualLength; local
299 actualLength = length + adjust;
301 memPtr = mmap(NULL, actualLength, PROT_READ, MAP_FILE | MAP_SHARED,
305 (int) actualLength, fd, (int) actualStart, strerror(errno));
310 pMap->baseLength = actualLength;
/dalvik/libcore/luni/src/main/native/
H A Dorg_apache_harmony_luni_platform_OSNetworkSystem.cpp2010 ssize_t actualLength = TEMP_FAILURE_RETRY(recvfrom(fd, buf, length, mode, local
2012 if (actualLength == -1) {
2029 (jint) actualLength);
2031 return (jint) actualLength;
2047 int actualLength = osNetworkSystem_receiveDatagramDirectImpl(env, clazz, fd, local
2050 if (actualLength > 0) {
2051 env->SetByteArrayRegion(data, offset, actualLength, bytes);
2055 return actualLength;
2076 int actualLength = recvfrom(fd, buf, length, mode, NULL, NULL); local
2077 if (actualLength <
2101 int actualLength = osNetworkSystem_recvConnectedDatagramDirectImpl(env, local
2150 int actualLength = osNetworkSystem_sendDatagramDirectImpl(env, clazz, fd, local
2188 int actualLength = osNetworkSystem_sendConnectedDatagramDirectImpl(env, local
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnectionImpl.java502 private int actualLength; field in class:HttpURLConnectionImpl.FixedLengthHttpOutputStream
514 if (actualLength != fixedLength) {
515 throw new IOException("actual length of " + actualLength +
535 actualLength += count;
542 ++actualLength;
550 if (actualLength + byteCount > fixedLength) {

Completed in 782 milliseconds