/frameworks/base/core/java/android/app/backup/ |
FullBackup.java | 162 int got = in.read(buffer, 0, toRead); local 163 if (got <= 0) { 164 Log.w(TAG, "Incomplete read: expected " + size + " but got " 170 out.write(buffer, 0, got); 180 size -= got;
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMLDBackend.cpp | 109 // initialize .got 110 LDSection& got = file_format->getGOT(); local 111 m_pGOT = new ARMGOT(got); 223 // set .got size 224 // when building shared object, the .got section is must 269 // apply GOT 271 // Since we already have the size of GOT, m_pGOT should not be NULL. 297 // define symbol _GLOBAL_OFFSET_TABLE_ when .got create 555 // If the input section's size is zero, we got a NULL region. 567 assert(m_pGOT != NULL && "GOT section not exist") [all...] |
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonLDBackend.cpp | 88 // set .got.plt and .got sizes 89 // when building shared object, the .got section is must 291 // set .got.plt size 298 // set .got size 308 HexagonGOTEntry* got = 0; local 314 got = &(llvm::cast<HexagonGOTEntry>((*it))); 315 *buffer = static_cast<uint32_t>(got->getValue()); 357 HexagonGOTEntry* got = 0; local 364 got = &(llvm::cast<HexagonGOTEntry>((*it))) 408 LDSection& got = file_format->getGOT(); local [all...] |
/frameworks/compile/mclinker/lib/Target/Mips/ |
MipsLDBackend.cpp | 166 // set .got size 167 // when building shared object, the .got section is must. 293 // the GOT and the symbol table. At the same time .gnu.hash 566 // If we do not reserve any GOT entries, we do not need to re-define GOT 851 // initialize .got 852 LDSection& got = fileFormat->getGOT(); local 853 m_pGOT = new Mips32GOT(got); 855 // initialize .got.plt 896 // initialize .got 897 LDSection& got = fileFormat->getGOT(); local [all...] |
MipsRelocator.cpp | 560 MipsGOT& got = getTarget().getGOT(); local 563 "Attempt to get a global GOT entry for the local relocation"); 565 Fragment* got_entry = got.lookupLocalEntry(rsym, entryValue); 572 got_entry = got.consumeLocal(); 574 if (got.isPrimaryGOTConsumed()) 577 got.setEntryValue(got_entry, entryValue); 579 got.recordLocalEntry(rsym, entryValue, got_entry); 587 MipsGOT& got = getTarget().getGOT(); local 590 "Attempt to get a local GOT entry for the global relocation"); 592 Fragment* got_entry = got.lookupGlobalEntry(rsym) 613 MipsGOT& got = getTarget().getGOT(); local 672 Fragment* got = getTarget().getGOTPLT().consume(); local 876 MipsGOT& got = pParent.getTarget().getGOT(); local [all...] |
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_dec/tests/ |
JPEGTest.c | 188 int got = 0; local 203 ReadFile(infile, &a, 1, &got, NULL); 209 ReadFile(infile, &b, 1, &got, NULL); 219 int ll = 0,lh = 0, got = 0; local 224 ReadFile(infile, &marker, 1, &got, NULL); 249 ReadFile(infile, &lh, 1, &got, NULL); 250 ReadFile(infile, &ll, 1, &got, NULL); 272 ReadFile(infile, Data+2, itemlen-2, &got, NULL); 274 got = fread(Data+2, 1, itemlen-2, infile); /* Read the whole section.*/ 276 if ( got != itemlen-2 ) [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
FloatTest.java | 93 + ") Expecting:" + Integer.toHexString(expectedRawBits) + " Got: " 854 Float got = Float.valueOf("432.1235"); local [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppObexClientSession.java | 116 int got = is.read(buffer, done, size - done); local 117 if (got <= 0) break; 118 done += got;
|
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
DictionaryBackupAgent.java | 201 int got; local 202 while ((got = gzip.read(tempData)) > 0) { 203 baos.write(tempData, 0, got);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_iter.py | 562 got = " - ".join(OhPhooey(f)) variable in class:TestCase.test_unicode_join_endcase.OhPhooey 563 self.assertEqual(got, unicode("a\n - b\n - fooled you! - c\n"))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_iter.py | 562 got = " - ".join(OhPhooey(f)) variable in class:TestCase.test_unicode_join_endcase.OhPhooey 563 self.assertEqual(got, unicode("a\n - b\n - fooled you! - c\n"))
|
/external/e2fsprogs/misc/ |
badblocks.c | 354 long got; local 376 got = read (dev, buffer, try * block_size); 379 if (got < 0) 380 got = 0; 381 if (got & 511) 382 fprintf(stderr, _("Weird value (%ld) in do_read\n"), got); 383 got /= block_size; 384 if (d_flag && got == try) { 420 return got; 430 long got; local 478 int got; local 592 int i, try, got, nr_pattern, pat_idx; local 735 int got, used2, written; local [all...] |
/external/icu/icu4c/source/test/intltest/ |
dtfmrgts.cpp | 113 errln("Fail: Want " + todayS + " Got " + rt); 142 errln("Fail: Test broken; Want 5/3/97 8:55 AM Got " + str); 266 UDate got = fmt->parse(s, status); local 268 logln(s + " -> " + got + "; exp " + exp); 269 if(got != exp) 329 errln("Fail: Want " + str + " Got " + formatted); 368 errln((UnicodeString) "Fail: Got " + cal->get(UCAL_DAY_OF_YEAR, status) + 385 errln((UnicodeString) "Fail: Got " + cal->get(UCAL_DAY_OF_YEAR, status) + [all...] |
loctest.cpp | 705 errln("Initial check of ISO3 language failed: expected \"eng\", got \"" + testValue + "\""); 716 errln("setDataDirectory() failed: expected \"xxx\", got \"" + testValue + "\""); 722 errln("get/setDataDirectory() failed: expected \"eng\", got \"" + testValue + "\""); 780 dataerrln("Display language (" + UnicodeString(displayLocale.getName()) + ") of (" + UnicodeString(testLocale.getName()) + ") got " + testLang + " expected " + expectedLang); 782 dataerrln("Display script (" + UnicodeString(displayLocale.getName()) + ") of (" + UnicodeString(testLocale.getName()) + ") got " + testScript + " expected " + expectedScript); 784 dataerrln("Display country (" + UnicodeString(displayLocale.getName()) + ") of (" + UnicodeString(testLocale.getName()) + ") got " + testCtry + " expected " + expectedCtry); 786 dataerrln("Display variant (" + UnicodeString(displayLocale.getName()) + ") of (" + UnicodeString(testLocale.getName()) + ") got " + testVar + " expected " + expectedVar); 788 dataerrln("Display name (" + UnicodeString(displayLocale.getName()) + ") of (" + UnicodeString(testLocale.getName()) + ") got " + testName + " expected " + expectedName); 1479 UnicodeString got; local 1481 en_US_custom.getDisplayVariant(Locale::getUS(), got); local 1488 en_US_custom.getDisplayName(Locale::getUS(), got); local [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/ |
TestIDNA.java | 84 " Expected: " + prettify(expected)+" Got: "+prettify(out)); 91 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 99 " Expected: " + prettify(expected)+" Got: "+out); 106 errln("convertToUnicode did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 114 " Expected: " + prettify(expected)+" Got: "+prettify(out)); 121 errln("Did not get the expected exception for source: " + prettify(src) +" Got: "+ ex.toString()); 135 " Expected: " + prettify(expected)+" Got: "+prettify(out)); 142 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString()); 149 " Expected: " + prettify(expected)+" Got: "+out); 156 errln("convertToUnicode did not get the expected exception for source: " +src +" Got: "+ ex.toString()) 653 StringBuffer got = null; local [all...] |
/external/libvncserver/x11vnc/ |
xevents.c | 629 int got = -1, free = -1; local 644 got = i; 651 if (got == -1) { 662 if (db) fprintf(stderr, "grab_buster got slot: %d\n", got); 663 if (watches[got].tick != ticker) { 664 watches[got].change = now; 666 if (watches[got].time != xtime) { 667 watches[got].change = now; 669 watches[got].tick = ticker [all...] |
keyboard.c | 3009 int got = 0; local [all...] |
/external/ppp/pppd/ |
options.c | 1148 int value, digit, got, n; local 1230 got = 0; [all...] |
/hardware/invensense/6515/libsensors_iio/ |
MPLSensor.cpp | 3422 int64_t got; local [all...] |
/hardware/invensense/65xx/libsensors_iio/ |
MPLSensor.cpp | 3194 int64_t got; local [all...] |
/external/e2fsprogs/debugfs/ |
debugfs.c | 1582 int got; local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
creststn.c | 250 log_err_status(status, "%s:%d: Expected error code %s, got error code %s\n", __FILE__, line, u_errorName(expected), u_errorName(status)); 367 log_data_err("Wrong locale name for %s, expected %s, got %s\n", norwayNames[i], norwayLocales[i], realName); 439 log_verbose(" Expected: 0x%04X Got: 0x%04X \n", uSrc[num],srcFromRes[num]); 501 log_verbose("Output did not match Expected: \\u%4X Got: \\u%4X", expected[i], zeroString[i]); 594 const UChar* got; local 618 got = tres_getString(theBundle,-1,"test_unescaping",&len,&status); 620 if(got==NULL || u_strncmp(expectedEscaped,got,expectedLen)!=0 || expectedLen != len){ 623 if(got != NULL){ 625 if(expectedEscaped[i] != got[i]) [all...] |
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
ICUResourceBundleTest.java | 108 logln("got the expected exception"); 226 int got = sub.getInt(); local 227 if(expected!=got){ 231 got = sub.getUInt(); 232 if(expected!=got){ 259 ByteBuffer got = sub.getBinary(); local 260 if(got.remaining()!=15){ 263 for(int i=0; i< got.remaining(); i++){ 264 byte b = got.get(); 270 got = sub.getBinary() 334 String got = sub1.getKey(); local [all...] |
/external/libmtp/src/ |
ptp.c | 310 int got; local 312 got = read (priv->fd, data, wantlen); 313 if (got != -1) 314 *gotlen = got; [all...] |
/frameworks/compile/mclinker/lib/Target/ |
GNULDBackend.cpp | 2202 LDSection& got = getOutputFormat()->getGOT(); local [all...] |