HomeSort by relevance Sort by last modified time
    Searched refs:WRITE (Results 101 - 125 of 127) sorted by null

1 2 3 45 6

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 46 WRITE = 2
168 dest.write(data)
180 output = Res.FSOpenResourceFile(destname, RESOURCE_FORK_NAME, WRITE)
184 output = Res.FSOpenResourceFile(destname, RESOURCE_FORK_NAME, WRITE)
243 progress.label("Write PYC resource...")
250 # Create the resource and write it
429 fc.write('\0\0\0\0') # MAGIC placeholder, written later
430 fc.write('\0\0\0\0') # Timestap placeholder, not needed
434 fc.write(MAGIC)
  /external/chromium_org/sandbox/win/tools/finder/
finder_kernel.cc 193 kernel_object_stats_[WRITE]++;
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.c 128 * For a MOV instruction, compute a write mask when src register also has
247 * write to such registers. Be careful with condition code setters.
321 /* find instructions that write to dead registers, flag for removal */
369 WRITE,
379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator
423 return WRITE;
630 if (use == WRITE || use == END)
800 if (next_use == WRITE || next_use == END) {
    [all...]
  /external/mesa3d/src/mesa/program/
prog_optimize.c 128 * For a MOV instruction, compute a write mask when src register also has
247 * write to such registers. Be careful with condition code setters.
321 /* find instructions that write to dead registers, flag for removal */
369 WRITE,
379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator
423 return WRITE;
630 if (use == WRITE || use == END)
800 if (next_use == WRITE || next_use == END) {
    [all...]
  /external/e2fsprogs/e2fsck/
journal.c 129 } else if (rw == WRITE && bh->b_dirty) {
146 rw == READ ? "read" : "write",
165 ll_rw_block(WRITE, 1, &bh);
629 ll_rw_block(WRITE, 1, &journal->j_sb_buffer);
revoke.c 19 * + Commit: during commit we write the entire list of the current
36 * The revoke must take precedence over the write of the block, so we
37 * need either to cancel the journal entry or to write the revoke
45 * The data write is allowed to succeed, but the revoke is _not_
431 * Write revoke records to the journal for all entries in the current
471 * Write out one revoke record. We need to create a new descriptor
550 BUFFER_TRACE(bh, "write");
551 ll_rw_block (WRITE, 1, &bh);
  /frameworks/av/services/audioflinger/
FastMixer.cpp 78 long underrunNs = 0; // underrun likely when write cycle is greater than this value
79 long overrunNs = 0; // overrun likely when write cycle is less than this value
80 long forceNs = 0; // if overrun detected, force the write cycle to take this much time
81 long warmupNs = 0; // warmup complete when write cycle is greater than to this value
97 NBAIO_Sink* teeSink = NULL; // if non-NULL, then duplicate write() to this non-blocking sink
211 case FastMixerState::WRITE:
473 if ((command & FastMixerState::WRITE) && (outputSink != NULL) && (mixBuffer != NULL)) {
479 (void) teeSink->write(mixBuffer, frameCount);
481 // FIXME write() is non-blocking and lock-free for a properly implemented NBAIO sink,
484 ATRACE_BEGIN("write");
    [all...]
  /external/kernel-headers/original/linux/
fs.h 121 * The below are the various read and write types that we support. Some of
149 * WRITE A normal async write. Device will be plugged.
150 * WRITE_SYNC Synchronous write. Identical to WRITE, but passes down
152 * shortly. The write equivalent of READ_SYNC.
153 * WRITE_ODIRECT Special case write for O_DIRECT only.
166 #define WRITE RW_MASK
170 #define WRITE_SYNC (WRITE | REQ_SYNC | REQ_NOIDLE)
171 #define WRITE_ODIRECT (WRITE | REQ_SYNC
1613 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); member in struct:file_operations
    [all...]
  /external/chromium_org/tools/android/forwarder2/
socket.cc 217 if (!WaitForEvent(WRITE, kConnectTimeOut)) {
321 int Socket::Write(const void* buffer, size_t count) {
357 ret = Write(static_cast<const char*>(buffer) + bytes_written,
  /system/extras/tests/sdcard/
sdcard_perf_test.cpp 56 // write: Open a file write some random data and close.
69 // For read/write tests, size is the number of Kbytes to use.
75 // adb shell /system/bin/sdcard_perf_test --test=write --size=1000 --chunk-size=100 --procnb=1 --iterations=100 --dump > /tmp/data.txt
130 printf("sdcard_perf_test --test=write|read|read_write|open_create|traverse [options]\n\n"
140 " -s --sync: fsync|sync Use fsync or sync in write test. Default: no sync call.\n"
359 *((pid_t *)chunk) = testCase->pid(); // write our pid at the beginning of each chunk
364 // iteration to last longer and have concurrent read/write
385 ssize_t written = write(fd, chunk, chunk_size);
388 fprintf(stderr, "Write failed %d %s.", errno, strerror(errno))
    [all...]
  /external/chromium/net/http/
http_cache.cc 217 // This class encapsulates a transaction whose only purpose is to write metadata
228 void Write(const GURL& url, base::Time expected_response_time, IOBuffer* buf,
246 void HttpCache::MetadataWriter::Write(const GURL& url,
451 writer->Write(url, expected_response_time, buf, buf_len);
798 // NOTE: If the transaction can only write, then the entry should not be in
806 if (trans->mode() & Transaction::WRITE) {
1009 if ((next->mode() & Transaction::WRITE) && !entry->readers.empty())
    [all...]
  /external/chromium_org/net/http/
http_cache.cc 187 // This class encapsulates a transaction whose only purpose is to write metadata
200 void Write(const GURL& url, base::Time expected_response_time, IOBuffer* buf,
217 void HttpCache::MetadataWriter::Write(const GURL& url,
386 writer->Write(url, expected_response_time, buf, buf_len);
781 // NOTE: If the transaction can only write, then the entry should not be in
789 if (trans->mode() & Transaction::WRITE) {
994 if ((next->mode() & Transaction::WRITE) && !entry->readers.empty())
    [all...]
  /external/chromium_org/sandbox/win/src/
sandbox_nt_util.cc 180 if (WRITE == intent) {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.services_3.2.100.v20100503.jar 
org.apache.jasper_5.5.17.v201004212143.jar 
org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar 
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_block_sse2.asm 599 ; RESHUFFLE AND WRITE OUT
  /external/chromium_org/third_party/mesa/src/include/GL/
vms_x_fix.h     [all...]
  /external/mesa3d/include/GL/
vms_x_fix.h     [all...]
  /prebuilts/devtools/tools/lib/
osgi-4.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/osgi/osgi/4.0.0/
osgi-4.0.0.jar 
  /prebuilts/tools/common/osgi/
osgi.jar 
  /external/elfutils/src/
elflint.c 16 with Red Hat elfutils; if not, write to the Free Software Foundation,
    [all...]
  /prebuilts/misc/common/ecj/
ecj.jar 
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js     [all...]

Completed in 6963 milliseconds

1 2 3 45 6