/bootable/recovery/mtdutils/ |
flash_image.c | 100 int wrote = mtd_write_data(out, buf, headerlen); local 101 if (wrote != headerlen) die("error writing %s", argv[1]); 105 wrote = mtd_write_data(out, buf, len); 106 if (wrote != len) die("error writing %s", argv[1]); 117 wrote = mtd_write_data(out, header, headerlen); 118 if (wrote != headerlen) die("error re-writing %s", argv[1]);
|
mtdutils.c | 458 fprintf(stderr, "mtd: wrote block after %d retries\n", retry); 460 fprintf(stderr, "mtd: successfully wrote block at %llx\n", pos); 478 size_t wrote = 0; local 479 while (wrote < len) { 481 if (ctx->stored > 0 || len - wrote < ctx->partition->erase_size) { 483 size_t copy = len - wrote < avail ? len - wrote : avail; 484 memcpy(ctx->buffer + ctx->stored, data + wrote, copy); 486 wrote += copy; 496 while (ctx->stored == 0 && len - wrote >= ctx->partition->erase_size) [all...] |
/external/chromium/chrome/browser/sessions/ |
session_backend.cc | 315 int wrote; local 322 wrote = file->Write(reinterpret_cast<const char*>(&total_size), 324 if (wrote != sizeof(total_size)) { 329 wrote = file->Write(reinterpret_cast<char*>(&command_id), 331 if (wrote != sizeof(command_id)) { 336 wrote = file->Write(reinterpret_cast<char*>((*i)->contents()), 338 if (wrote != content_size) { 377 int wrote = file->Write(reinterpret_cast<char*>(&header), local 379 if (wrote != sizeof(header))
|
/external/webkit/LayoutTests/fast/url/resources/ |
utilities.js | 16 // so the tests ran correctly in Firefox at the time we originally wrote them.
|
/bootable/recovery/applypatch/ |
applypatch.c | 403 printf("only wrote %d of %d bytes to MTD %s\n", 537 ssize_t wrote; local 539 wrote = write(fd, data+done, len-done); 540 if (wrote <= 0) { 544 done += wrote;
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_html_writer.cc | 183 size_t wrote = file_stream_.Write(text.c_str(), text.length(), NULL); local 184 bool result = (wrote == text.length());
|
/cts/tools/vm-tests-tf/ |
Android.mk | 72 @echo "wrote generated Main_*.java files to $(PRIVATE_INTERMEDIATES_MAIN_FILES)"
|
/cts/tools/vm-tests/ |
Android.mk | 76 @echo "wrote generated Main_*.java files to $(PRIVATE_INTERMEDIATES_MAIN_FILES)"
|
/bootable/recovery/updater/ |
install.c | 842 int wrote = mtd_write_data(ctx, buffer, read); local 843 success = success && (wrote == read); 849 ssize_t wrote = mtd_write_data(ctx, contents->data, contents->size); local 850 success = (wrote == contents->size); 865 success ? "wrote" : "failed to write", partition); [all...] |
/external/zlib/contrib/masmx64/ |
gvmat64.asm | 25 ; claim that you wrote the original software. If you use this software
|
/external/zlib/contrib/masmx86/ |
match686.asm | 177 ;; claim that you wrote the original software. If you use this software
|
/external/sqlite/dist/ |
sqlite3.c | 21806 ULONG wrote; local 25818 int wrote = 0; local [all...] |
sqlite3.c.orig | [all...] |
/external/dropbear/libtommath/ |
bn.tex | 255 Source code alone cannot really teach how the algorithms work which is why I also wrote a textbook that accompanies [all...] |
/external/dropbear/libtomcrypt/ |
crypt.tex | [all...] |