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

1 2 3 4

  /external/chromium/base/memory/
weak_ptr_unittest.cc 38 struct Producer : SupportsWeakPtr<Producer> {};
39 struct Consumer { WeakPtr<Producer> producer; }; member in struct:base::__anon2311::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/webkit/Source/WebCore/platform/graphics/android/
SharedTexture.h 61 void initSourceTexture(); // producer thread only
62 void deleteSourceTexture(); // producer thread only
75 * The texture and its associated metadata that is used by the producer. The
76 * texture is created in the producer's thread and can only be read by the
77 * consumer when the consumer shares the same context as the producer. The
DoubleBufferedTexture.cpp 107 // initialize the producer's textures
134 LOGV("Deleting Producer Textures A (%d)", m_textureA->getSourceTextureId());
137 LOGV("Deleting Producer Textures B (%d)", m_textureB->getSourceTextureId());
211 // producer may have swapped out the readable buffer
  /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 36 // transferring small records between a Single producer and a Single
38 // elements, so producer never blocks. Implemented after Herb
  /frameworks/base/libs/rs/
rsFifo.h 27 // A simple FIFO to be used as a producer / consumer between two
rsLocklessFifo.h 28 // 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/skia/include/core/
SkRelay.h 41 // producer calls this
  /external/elfutils/tests/
run-show-die-info.sh 31 Attrs : name stmt_list low_pc high_pc language comp_dir producer
36 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
55 Attrs : name stmt_list low_pc high_pc language comp_dir producer
60 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
79 Attrs : name stmt_list low_pc high_pc language comp_dir producer
84 producer : GNU C 2.96 20000731 (Red Hat Linux 7.0)
129 Attrs : name stmt_list low_pc high_pc language comp_dir producer
134 producer : GNU C 2.96-laurel-000912
916 Attrs : name stmt_list low_pc high_pc language comp_dir producer
921 producer : GNU C 2.96-laurel-00091
    [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
153 static void producer(int* id) function
205 (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/base/graphics/java/android/graphics/
SurfaceTexture.java 106 * mode where the producer side may be blocked to avoid skipping frames. To avoid the
134 * Set the default size of the image buffers. The image producer may override the buffer size,
135 * in which case the producer-set buffer size will be used, not the default size set by this
140 * The new default buffer size will take effect the next time the image producer requests a
  /frameworks/base/libs/gui/tests/
SurfaceTexture_test.cpp 822 // We wait for the first two frames up front so that the producer will be
832 // then the producer and consumer will get out of sync, which will cause
    [all...]
  /frameworks/compile/slang/
slang.h 79 // Diagnostics Mediator (An interface for both Producer and Consumer)
85 // Diagnostics Engine (Producer and Diagnostics Reporter)

Completed in 1206 milliseconds

1 2 3 4