HomeSort by relevance Sort by last modified time
    Searched defs:amt (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /hardware/akm/AK8975_FS/libsensors/
SensorBase.cpp 72 int fd, amt; local
81 amt = write(fd, value, bytes);
82 amt = ((amt == -1) ? -errno : 0);
83 ALOGE_IF(amt < 0, "SensorBase: write_int failed to write %s (%s)",
86 return amt;
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractMapTest.java 31 AMT amt = new AMT(); local
32 assertNotNull(amt);
36 AbstractMap<String, String> amt1 = new AMT();
37 AbstractMap<String, String> amt2 = new AMT();
54 AMT amt1 = new AMT();
55 AMT amt2 = new AMT();
62 AMT amt = new AMT(); local
69 AMT amt = new AMT(); local
80 AMT amt = new AMT(); local
91 AMT amt = new AMT(); local
    [all...]
  /cts/tools/cfassembler/src/dxconvext/util/
FileUtils.java 78 int amt = in.read(result, at, length); local
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
  /dalvik/dexgen/src/com/android/dexgen/util/
FileUtils.java 78 int amt = in.read(result, at, length); local
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
  /external/dexmaker/src/dx/java/com/android/dx/util/
FileUtils.java 78 int amt = in.read(result, at, length); local
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
FileUtils.java 110 long amt = in.skip(at); local
111 if (amt == -1) {
114 at -= amt;
130 int amt = in.read(result, at, length); local
131 if (amt == -1) {
134 at += amt;
135 length -= amt;
  /external/tcpdump/
print-ripng.c 66 register u_int amt; local
73 amt = snapend - dat;
74 i = min(length, amt);
  /external/valgrind/main/none/tests/
pth_cancel2.c 26 #define async_cancel_safe_read(fd,buf,amt) \
30 if (read(fd,buf,amt) < 0) \
37 #define async_cancel_safe_write(fd,buf,amt) \
41 if (write(fd,buf,amt) < 0) \
54 int amt=20; local
57 async_cancel_safe_write(*fd2,buf,amt);
58 async_cancel_safe_read(*fd2,buf,amt);
  /frameworks/base/tools/aapt/
printapk.cpp 29 ssize_t amt; local
51 amt = lseek(fd, 0, SEEK_SET);
53 if (size < 0 || amt < 0) {
64 amt = read(fd, buf, size);
65 if (amt != size) {
  /libcore/dex/src/main/java/com/android/dex/util/
FileUtils.java 74 int amt = in.read(result, at, length); local
75 if (amt == -1) {
78 at += amt;
79 length -= amt;
  /dalvik/vm/
RawDexFile.cpp 76 ssize_t amt = read(fd, headerStart, sizeof(headerStart)); local
78 if (amt < 0) {
83 if (amt != sizeof(headerStart)) {
84 ALOGE("Unable to read full header (only got %d bytes)", (int) amt);
  /development/tools/line_endings/
line_endings.c 72 ssize_t amt; local
74 amt = read(fd, buf, amt2);
75 if (amt != amt2) {
96 ssize_t amt = write(fd, root->buf, amt2); local
97 if (amt != amt2) {
  /external/valgrind/main/none/tests/amd64/
shrld.c 8 ULong amt; variable
39 "\tmovq amt, %rcx\n"
60 "\tmovq amt, %rcx\n"
81 "\tmovq amt, %rcx\n"
103 "\tmovq amt, %rcx\n"
124 "\tmovq amt, %rcx\n"
145 "\tmovq amt, %rcx\n"
172 amt = (ULong)i;
185 amt = (ULong)i;
199 amt = (ULong)i
    [all...]
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FillLightFilter.java 132 float amt = 1.0f - mBacklight; local
133 float mult = 1.0f / (amt * 0.7f + 0.3f);
  /device/asus/grouper/liblights/
lights.c 44 int amt = write(fd, buffer, bytes); local
46 return amt == -1 ? -errno : 0;
  /device/lge/hammerhead/liblight/
lights.c 68 int amt = write(fd, buffer, bytes); local
70 return amt == -1 ? -errno : 0;
89 int amt = write(fd, buffer, bytes); local
91 return amt == -1 ? -errno : 0;
  /external/clang/lib/Analysis/
FormatString.cpp 82 const OptionalAmount &Amt = ParseAmount(I, E);
84 if (Amt.getHowSpecified() == OptionalAmount::NotSpecified) {
95 assert(Amt.getHowSpecified() == OptionalAmount::Constant);
101 if (Amt.getConstantAmount() == 0) {
109 return OptionalAmount(OptionalAmount::Arg, Amt.getConstantAmount() - 1,
132 const OptionalAmount Amt =
136 if (Amt.isInvalid())
138 CS.setFieldWidth(Amt);
151 const OptionalAmount &Amt = ParseAmount(I, E);
159 if (Amt.getHowSpecified() == OptionalAmount::Constant && *(I++) == '$')
573 os << amt; local
    [all...]
  /external/grub/netboot/
fsys_tftp.c 359 int amt = buf_read + saved_filepos - filepos; local
363 if (amt > size)
364 amt = size;
366 if (amt > 0)
369 grub_memmove (addr, buf + filepos - saved_filepos, amt);
370 size -= amt;
371 addr += amt;
372 filepos += amt;
373 ret += amt;
  /frameworks/base/core/java/android/util/
AtomicFile.java 213 int amt = stream.read(data, pos, data.length-pos); local
214 //Log.i("foo", "Read " + amt + " bytes at " + pos
216 if (amt <= 0) {
221 pos += amt;
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 148 int amt = stream.read(data, pos, data.length-pos); local
149 //Log.i("foo", "Read " + amt + " bytes at " + pos
151 if (amt <= 0) {
156 pos += amt;
  /frameworks/base/core/jni/
android_backup_BackupHelperDispatcher.cpp 47 ssize_t amt; local
53 amt = read(fd, &flattenedHeader.headerSize, sizeof(flattenedHeader.headerSize));
54 if (amt != sizeof(flattenedHeader.headerSize)) {
69 amt = read(fd, &flattenedHeader.version,
71 if (amt <= 0) {
108 amt = read(fd, buf, flattenedHeader.nameLength);
  /frameworks/base/libs/androidfw/
BackupData.cpp 75 ssize_t amt; local
82 amt = write(m_fd, &padding, paddingSize);
83 if (amt != paddingSize) {
87 m_pos += amt;
99 ssize_t amt; local
101 amt = write_padding_for(m_pos);
102 if (amt != 0) {
103 return amt;
129 amt = write(m_fd, &header, sizeof(entity_header_v1));
130 if (amt != sizeof(entity_header_v1))
166 ssize_t amt = write(m_fd, data, size); local
235 int amt; local
278 int amt = read(m_fd, buf, size+1); local
352 int amt = read(m_fd, data, size); local
368 ssize_t amt; local
    [all...]
  /frameworks/base/services/common_time/
diag_thread.cpp 264 int amt = local_clock_->getDebugLog(events, kMaxEvents); local
266 if (amt > 0) {
267 for (int i = 0; i < amt; i++) {
  /frameworks/support/v4/java/android/support/v4/util/
AtomicFile.java 182 int amt = stream.read(data, pos, data.length-pos); local
183 //Log.i("foo", "Read " + amt + " bytes at " + pos
185 if (amt <= 0) {
190 pos += amt;
  /cts/tools/cfassembler/src/dxconvext/
ClassFileAssembler.java 140 int amt = md.digest(bytes, 12, 20); local
141 if (amt != 20) {
142 throw new RuntimeException("unexpected digest write: " + amt +

Completed in 656 milliseconds

1 2 3 4 5