HomeSort by relevance Sort by last modified time
    Searched full:producer (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/chromium/base/memory/
weak_ptr_unittest.cc 38 struct Producer : SupportsWeakPtr<Producer> {};
39 struct Consumer { WeakPtr<Producer> producer; }; member in struct:base::__anon3111::Consumer
92 Producer f;
93 WeakPtr<Producer> ptr = f.AsWeakPtr();
122 scoped_ptr<Producer> producer(OffThreadObjectCreator<Producer>::NewObject());
123 WeakPtr<Producer> weak_producer = producer->AsWeakPtr()
132 Producer producer; local
    [all...]
  /external/qemu/android/
framebuffer.h 19 * one 'Producer' and one or more 'Clients'
21 * The Producer is in charge of updating the pixel buffer from the state
23 * sent from the producer through qframebuffer_update()/_rotate() and
35 * More about the client/producer relationships below.
137 /* Producer::CheckUpdate is called to let the producer check the
144 /* Producer::Invalidate tells the producer that the next call to
150 /* the Producer::Detach method is used to tell the producer that th
    [all...]
display.c 28 /* QFrameBuffer producer callbacks */
  /external/proguard/src/proguard/evaluation/
TracedStack.java 29 * The stack stores a given producer Value along with each Value it stores.
30 * It then generalizes a given collected Value with the producer Value
31 * of each Value it loads. The producer Value and the initial collected Value
75 * Gets the specified producer Value from the stack, without disturbing it.
78 * @return the producer value at the specified position.
87 * Sets the specified producer Value on the stack, without disturbing it.
90 * @param value the producer value to set.
99 * Gets the specified producer Value from the stack, without disturbing it.
102 * @return the producer value at the specified position.
111 * Sets the specified producer Value on the stack, without disturbing it
    [all...]
TracedVariables.java 29 * The Variables class stores a given producer Value along with each Value it
30 * stores. It then generalizes a given collected Value with the producer Value
31 * of each Value it loads. The producer Value and the initial collected Value
99 * Gets the producer Value for the specified variable, without disturbing it.
101 * @return the producer value of the given variable.
110 * Sets the given producer Value for the specified variable, without
113 * @param value the producer value to set.
178 // Store the producer value in its producer variable.
  /external/guava/guava-tests/test/com/google/common/collect/
QueuesTest.java 64 // notice that if a Producer is interrupted (a bug), the Producer will go into an infinite
87 threadPool.submit(new Producer(q, 20));
88 threadPool.submit(new Producer(q, 20));
89 threadPool.submit(new Producer(q, 20));
90 threadPool.submit(new Producer(q, 20));
91 threadPool.submit(new Producer(q, 20));
112 Future<?> submitter = threadPool.submit(new Producer(q, 1));
160 threadPool.submit(new Producer(q, 1));
167 // Clean up produced element to free the producer thread, otherwise it will complai
    [all...]
  /external/qemu/docs/
ANDROID-FRAMEBUFFER.TXT 39 - can have one producer in charge of drawing into the pixel buffer
47 if fb.producer:
48 fb.producer.check_updates()
49 => in producer
56 hw/goldfish_fb.c implements a producer
  /external/kernel-headers/original/linux/
clk.h 27 * clk_get - lookup and obtain a reference to a clock producer.
31 * Returns a struct clk corresponding to the clock producer, or
34 * the clock producer. (IOW, @id may be identical strings, but
  /external/v8/src/
circular-queue.cc 44 // The distance ensures that producer and consumer never step on
57 // Layout producer and consumer position pointers each on their own
117 // Eliminate producer / consumer distance.
circular-queue.h 37 // single producer and a single consumer. If the queue is full,
42 // IMPORTANT: as a producer never checks for chunks cleanness, it is
64 // Due to a presence of slipping between the producer and the consumer,
unbound-queue.h 38 // transferring small records between a Single producer and a Single
40 // elements, so producer never blocks. Implemented after Herb
  /frameworks/native/include/gui/
BufferQueue.h 45 // producer and consumer can run asynchronously.
101 // synchronous mode can be enabled by the producer. allocator is used to
151 // connect attempts to connect a producer client API to the BufferQueue.
159 // disconnect attempts to disconnect a producer client API from the
239 // interactions with the BufferQueue by the producer to fail.
244 // state, causing most interactions with the BufferQueue by the producer to
264 // producer is connected to the BufferQueue.
309 // that will be used if the producer does not override the buffer slot
330 // Any time one of these member variables is changed while a producer is
376 // aka "owned by producer, ready to be queued
    [all...]
  /external/skia/include/core/
SkRelay.h 34 // producer calls this
  /frameworks/rs/
rsFifo.h 27 // A simple FIFO to be used as a producer / consumer between two
  /frameworks/support/renderscript/v8/rs_support/
rsFifo.h 27 // A simple FIFO to be used as a producer / consumer between two
  /external/apache-http/src/org/apache/http/entity/
EntityTemplate.java 40 * content producer.
55 throw new IllegalArgumentException("Content producer may not be null");
ContentProducer.java 38 * An abstract entity content producer.
  /external/llvm/test/CodeGen/X86/
unknown-location.ll 24 !3 = metadata !{i32 524305, i32 0, i32 12, metadata !"test.c", metadata !".", metadata !"producer", i1 true, i1 false, metadata !"", i32 0} ; [ DW_TAG_compile_unit ]
  /external/elfutils/tests/
run-show-die-info.sh 38 Attrs : name stmt_list low_pc high_pc language comp_dir producer
43 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
62 Attrs : name stmt_list low_pc high_pc language comp_dir producer
67 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
86 Attrs : name stmt_list low_pc high_pc language comp_dir producer
91 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
136 Attrs : name stmt_list low_pc high_pc language comp_dir producer
141 producer : GNU C 2.96-laurel-000912
    [all...]
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 196 Value producer = local
198 if (producer != null &&
199 producer.instructionOffsetValue().contains(PartialEvaluator.AT_METHOD_ENTRY))
  /external/valgrind/main/drd/tests/
circular_buffer.c 1 /* Test program that performs producer-consumer style communication through
159 static void producer(int* id) function
211 (void * (*)(void *)) producer, &thread_arg[i]);
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingQueue.java 76 * primarily for producer-consumer queues, but additionally support
102 * Usage example, based on a typical producer-consumer scenario.
106 * class Producer implements Runnable {
108 * Producer(BlockingQueue q) { queue = q; }
131 * Producer p = new Producer(q);
  /frameworks/native/services/surfaceflinger/
SurfaceTextureLayer.cpp 43 // Camera preview and videos are rate-limited on the producer
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/profile/impl/
profiler_hashtable_size.h 48 /** @brief Hashtable size instrumentation trace producer. */
profiler_vector_size.h 48 /** @brief Hashtable size instrumentation trace producer. */

Completed in 512 milliseconds

1 2 3 4 5 6