HomeSort by relevance Sort by last modified time
    Searched full:consumer (Results 251 - 275 of 832) sorted by null

<<11121314151617181920>>

  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6/
gradle-tooling-api-1.6-sources.jar 
  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.6-rc-1/
gradle-tooling-api-1.6-rc-1-sources.jar 
  /prebuilts/tools/common/m2/internal/org/gradle/gradle-tooling-api/1.7/
gradle-tooling-api-1.7-sources.jar 
  /external/chromium_org/ipc/
ipc_send_fds_test.cc 301 // sends it over pipe2 to the consumer thread. The consumer thread writes a byte
353 scoped_ptr<base::Thread> consumer(CreateThread("consumer"));
356 consumer.get(),
ipc_logging.cc 82 void Logging::SetConsumer(Consumer* consumer) {
83 consumer_ = consumer;
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBlender.cpp 299 bool SVGPathBlender::addAnimatedPath(SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer* consumer, unsigned repeatCount)
302 return blendAnimatedPath(0, fromSource, toSource, consumer);
305 bool SVGPathBlender::blendAnimatedPath(float progress, SVGPathSource* fromSource, SVGPathSource* toSource, SVGPathConsumer* consumer)
309 ASSERT(consumer);
312 m_consumer = consumer;
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h 464 * byteReader_t - Type for the byte reader that the consumer must provide to
466 * @param arg - A baton that the consumer can associate with any internal
477 * dlog_t - Type for the logging function that the consumer can provide to
479 * @param arg - A baton that the consumer can associate with any internal
617 * a buffer provided by the consumer.
619 * consumer.
622 * specific to the consumer. May be NULL.
  /frameworks/native/include/input/
InputTransport.h 149 * Try again after the consumer has sent a finished signal indicating that it has
241 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
243 * and whether the consumer handled the message.
263 /* Creates a consumer associated with an input channel. */
266 /* Destroys the consumer and releases its input channel. */
300 * the message was handled by the consumer.
310 * Should be called after calling consume() to determine whether the consumer
  /hardware/libhardware/tests/camera2/
camera2_utils.cpp 55 // Interface to camera2 HAL as consumer (input requests/reprocessing)
80 ALOGV("%s: Signaling consumer", __FUNCTION__);
319 StreamAdapter::StreamAdapter(sp<IGraphicBufferProducer> consumer):
324 mConsumerInterface = new Surface(consumer);
370 // Configure consumer-side ANativeWindow interface
403 ALOGE("%s: Unable to query consumer undequeued"
410 ALOGV("%s: Producer wants %d buffers, consumer wants %d", __FUNCTION__,
  /external/chromium/chrome/browser/
favicon_helper.cc 230 CancelableRequestConsumerBase* consumer,
233 icon_type, consumer, callback);
239 CancelableRequestConsumerBase* consumer,
241 GetFaviconService()->GetFavicon(icon_url, icon_type, consumer, callback);
247 CancelableRequestConsumerBase* consumer,
249 GetFaviconService()->GetFaviconForURL(page_url, icon_types, consumer,
  /frameworks/av/include/media/nbaio/
NBAIO.h 46 // Negotiation of format is based on the data provider and data sink, or the data consumer and
230 // Abstract class (interface) representing a non-blocking data source, for use by a data consumer.
260 // buffer Non-NULL destination buffer owned by consumer.
279 // total Estimate of the number of frames the consumer desires. This is an estimate,
281 // user Arbitrary void * reserved for data consumer.
298 // user Arbitrary void * reserved for data consumer.
  /external/chromium/chrome/browser/password_manager/
password_store_x.cc 110 // The consumer will be left hanging unless we reply.
124 // The consumer will be left hanging unless we reply.
138 // The consumer will be left hanging unless we reply.
  /external/chromium_org/chrome/browser/google/
google_url_tracker.h 43 // performed (ever) unless at least one consumer registers interest by calling
142 // Registers consumer interest in getting an updated URL from the server.
194 bool need_to_fetch_; // True if a consumer actually wants us to fetch an
  /external/chromium_org/chrome/browser/sync_file_system/
remote_file_sync_service.h 42 // The consumer of this service can make new requests while the
50 // The consumer of this service can still make new requests but
57 // The consumer of this service can still make new requests but
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_buffer_pool_unittest.cc 135 // First consumer finishes.
139 // Second consumer finishes. This should free that buffer.
153 // Even though the consumer is done with the buffer at |buffer_id1|, it cannot
  /frameworks/av/include/media/stagefright/
SurfaceMediaSource.h 146 // this consumer
162 // being used by buffer consumer
173 // buffer consumer (i.e. the video encoder). It's possible that these
  /frameworks/native/libs/gui/
ConsumerBase.cpp 85 "consumer is not abandoned!", mName.string());
207 // If consumer no longer tracks this graphicBuffer, we can safely
235 // If consumer no longer tracks this graphicBuffer (we received a new
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
Queue.py 1 """A multi-producer, multi-consumer queue."""
48 Used by Queue consumer threads. For each get() used to fetch a task,
74 queue. The count goes down whenever a consumer thread calls task_done()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Queue.py 1 """A multi-producer, multi-consumer queue."""
48 Used by Queue consumer threads. For each get() used to fetch a task,
74 queue. The count goes down whenever a consumer thread calls task_done()
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.h 78 // Consumer for requesting favicons.
  /external/chromium/chrome/browser/chromeos/login/
login_utils.h 69 virtual Authenticator* CreateAuthenticator(LoginStatusConsumer* consumer) = 0;
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/
index.php 47 public $consumer; variable
52 $this->consumer = new OAuthConsumer( variable
109 $this->consumer, $this->token, 'GET', $url, array());
111 $request->sign_request($this->signatureMethod, $this->consumer,
  /external/chromium/chrome/common/extensions/docs/static/
tut_oauth.html 52 <p>In the context of an extension, this flow gets a bit tricky. Namely, there is no established consumer key/secret between the service provider and the application. That is, there is no web application URL for the user to be redirected to after the approval process.
56 Luckily, Google and a few other companies have been working on an <a href="http://code.google.com/apis/accounts/docs/OAuthForInstalledApps.html">OAuth for installed applications</a> solution that you can use from an extension environment. In the installed applications OAuth dance, the consumer key/secret are ?anonymous?/?anonymous? and you provide an <em>application name</em> for the user to grant access to (instead of an application URL). The end result is the same: your background page requests the initial token, opens a new tab to the approval page, and finally makes the asynchronous call for the access token.
68 'consumer_key': &lt;OAuth consumer key&gt;,
69 'consumer_secret': &lt;OAuth consumer secret&gt;,
  /external/chromium/net/base/
directory_lister.h 26 // structs over to the main application thread. The consumer of this class
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_appcache_helper.h 61 // Return a copy of the appcache helper. Only one consumer can use the

Completed in 651 milliseconds

<<11121314151617181920>>