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

1 2 3 4 5

  /external/oauth/core/src/main/java/net/oauth/
ConsumerProperties.java 28 * A pool of OAuthConsumers that are constructed from Properties. Each consumer
30 * from Properties whose names are prefixed with the consumer's name. For
31 * example, a consumer's credentials come from properties named
72 /** Get the consumer with the given name. */
74 OAuthConsumer consumer; local
76 consumer = pool.get(name);
78 if (consumer == null) {
79 consumer = newConsumer(name);
84 pool.put(name, consumer);
90 consumer = first
105 OAuthConsumer consumer = new OAuthConsumer(consumerProperties local
    [all...]
OAuthAccessor.java 38 public final OAuthConsumer consumer; field in class:OAuthAccessor
43 public OAuthAccessor(OAuthConsumer consumer) {
44 this.consumer = consumer;
68 * consumer.getProperty("httpMethod") or (if that's null)
77 method = (String) this.consumer.getProperty("httpMethod");
85 Object accepted = consumer.getProperty(OAuthConsumer.ACCEPT_ENCODING);
consumer.properties.sample 1 # NamedConsumerPool can gets consumer configuration parameters from a file like this.
12 twitter.consumer.oauth_signature_method: PLAINTEXT
13 # There can be more consumer properties.
OAuthConsumer.java 25 * Properties of an OAuth Consumer. Properties may be added freely, e.g. to
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
QueryTask.java 19 import com.android.quicksearchbox.util.Consumer;
33 private final Consumer<C> mConsumer;
42 * @param handler Handler that {@link Consumer#consume} will
44 * @param consumer Consumer to notify when the suggestions have been returned.
48 Handler handler, Consumer<C> consumer, boolean onlyTask) {
53 mConsumer = consumer;
86 Consumer<C> consumer, boolean onlyOneProvider)
    [all...]
  /external/webkit/WebKit/chromium/
README 7 revealing any of the WebCore or WTF types to the consumer.
28 the consumer to ensure proper linkage to the shared library.
41 for the convenience of the consumer.
  /dalvik/dx/src/com/android/dx/cf/direct/
ClassPathOpener.java 42 private final Consumer consumer; field in class:ClassPathOpener
53 public interface Consumer {
69 * Informs consumer that an exception occurred while processing
77 * Informs consumer that processing of an archive file has begun.
91 * @param consumer {@code non-null;} callback interface
93 public ClassPathOpener(String pathname, boolean sort, Consumer consumer) {
96 this.consumer = consumer;
    [all...]
  /external/chromium/base/
weak_ptr_unittest.cc 36 struct Consumer { WeakPtr<Producer> producer; };
128 scoped_ptr<Consumer> consumer(OffThreadObjectCreator<Consumer>::NewObject());
130 consumer->producer = producer.AsWeakPtr();
131 EXPECT_EQ(&producer, consumer->producer.get());
event_trace_consumer_win.h 5 // Declaration of a Windows event trace consumer base class.
25 // MyConsumer consumer;
26 // consumer.OpenFileSession(file_path);
27 // consumer.Consume();
31 // Constructs a closed consumer.
  /external/webkit/WebCore/svg/
SVGPreserveAspectRatio.h 72 template<class Consumer>
73 static bool parsePreserveAspectRatio(Consumer* consumer, const String& value, bool validate = true)
78 consumer->setPreserveAspectRatioBaseValue(parsePreserveAspectRatio(begin, end, validate, result));
  /external/oauth/core/src/main/java/net/oauth/signature/
RSA_SHA1.java 37 * Class to handle RSA-SHA1 signatures on OAuth requests. A consumer
52 * consumer does not need a shared secret with the consumer, but it needs
53 * to know the consumer's public key. You create the necessary
60 * consumer_publicRSAKey must be the consumer's public RSAkey and
66 * by such a consumer can use a X509 certificate containing the consumer's
74 * consumer_cert must be a X509 Certificate containing the consumer's public
97 Object privateKeyObject = accessor.consumer.getProperty(PRIVATE_KEY);
114 Object publicKeyObject = accessor.consumer.getProperty(PUBLIC_KEY)
    [all...]
  /external/webkit/WebKit/mac/WebView/
WebPDFRepresentation.mm 100 CGDataConsumerRef consumer = CGDataConsumerCreateWithCFData(result);
101 ASSERT(consumer);
104 CGPSConverterConvert(converter, provider, consumer, 0);
108 CFRelease(consumer);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
Consumer.java 24 public interface Consumer<A> {
BarrierConsumer.java 25 * A consumer that consumes a fixed number of values. When the expected number of values
28 public class BarrierConsumer<A> implements Consumer<A> {
  /frameworks/base/libs/ui/tests/
InputPublisherAndConsumer_test.cpp 69 << "consumer initialize should return OK";
97 << "consumer receiveDispatchSignal should return OK";
102 << "consumer consume should return OK";
105 << "consumer should have returned non-NULL event";
107 << "consumer should have returned a key event";
123 << "consumer sendFinishedSignal should return OK";
199 << "consumer receiveDispatchSignal should return OK";
204 << "consumer consume should return OK";
207 << "consumer should have returned non-NULL event";
209 << "consumer should have returned a motion event"
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 41 * Methods for an OAuth consumer to request tokens from a service provider.
87 * should contain a consumer that contains a non-null consumerKey
89 * accessor.consumer.serviceProvider.requestTokenURL should be
104 * should contain a consumer that contains a non-null consumerKey
106 * accessor.consumer.serviceProvider.requestTokenURL should be
123 * should contain a consumer that contains a non-null consumerKey
125 * accessor.consumer.serviceProvider.requestTokenURL should be
158 accessor.consumer.serviceProvider.requestTokenURL, parameters);
170 * consumer that contains a consumerKey and consumerSecret. Also,
171 * accessor.consumer.serviceProvider.accessTokenURL should be th
    [all...]
  /frameworks/base/include/ui/
InputTransport.h 104 * It becomes 0 permanently when the consumer consumes the message.
109 * Set to true by the consumer when it consumes the message.
167 * Uses atomic operations to coordinate shared access with a single concurrent consumer.
245 /* Sends a dispatch signal to the consumer to inform it that a new message is available.
252 /* Receives the finished signal from the consumer in reply to the original dispatch signal.
285 /* Creates a consumer associated with an input channel. */
288 /* Destroys the consumer and releases its input channel. */
294 /* Prepares the consumer for use. Must be called before it is used. */
  /frameworks/base/libs/ui/
InputTransport.cpp 33 // Signal sent by the producer to the consumer to inform it that a new message is
37 // Signal sent by the consumer to the producer to inform it that it has finished
408 // Cache essential information about the motion event to ensure that a malicious consumer
456 // Only possible source of contention is the consumer having consumed (or being in the
512 LOGE("channel '%s' publisher ~ Received unexpected signal '%c' from consumer",
533 LOGD("channel '%s' consumer ~ initialize",
540 LOGE("channel '%s' consumer ~ Error %d getting size of ashmem fd %d.",
550 LOGE("channel '%s' consumer ~ mmap failed on ashmem fd %d.",
560 LOGD("channel '%s' consumer ~ consume",
570 LOGE("channel '%s' consumer ~ Error %d pinning ashmem fd %d because it was purged
    [all...]
  /development/pdk/docs/about/
index.jd 12 goal, and the result is a full production quality consumer product whose
  /frameworks/base/libs/rs/
rsLocklessFifo.h 26 // A simple FIFO to be used as a producer / consumer between two
  /external/chromium/net/base/
load_states.h 14 // either not yet begun or is idle waiting for the consumer to do something
15 // to move things along (e.g., the consumer of an URLRequest may not have
directory_lister.h 24 // structs over to the main application thread. The consumer of this class
  /external/kernel-headers/original/linux/
clk.h 28 * @dev: device for clock "consumer"
33 * uses @dev and @id to determine the clock consumer, and thereby
  /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.
117 * class Consumer implements Runnable {
119 * Consumer(BlockingQueue q) { queue = q; }
132 * Consumer c1 = new Consumer(q);
133 * Consumer c2 = new Consumer(q);
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
TransformState.java 33 * This interface is meant to be used by a consumer of
34 * SAX2 events produced by Xalan, and enables the consumer

Completed in 448 milliseconds

1 2 3 4 5