Searched refs:nbytes (Results 1 - 2 of 2) sorted by relevance

/art/runtime/openjdkjvm/
H A DOpenjdkJvm.cc103 JNIEXPORT jint JVM_Read(jint fd, char* buf, jint nbytes) { argument
104 return TEMP_FAILURE_RETRY(read(fd, buf, nbytes));
108 JNIEXPORT jint JVM_Write(jint fd, char* buf, jint nbytes) { argument
109 return TEMP_FAILURE_RETRY(write(fd, buf, nbytes));
/art/tools/dmtracedump/
H A Dtracedump.cc254 int32_t nbytes = 0;
257 nbytes += 4;
258 if (nbytes >= len) break;
264 nbytes += 4;
265 if (nbytes >= len) break;
271 nbytes += 5;
272 if (nbytes >= len) break;
279 nbytes += 1;
280 if (nbytes >= len) break;
285 if (nbytes >
[all...]

Completed in 145 milliseconds