Home
last modified time | relevance | path

Searched refs:consumer (Results 1 – 25 of 49) sorted by relevance

12

/external/oauth/core/src/main/java/net/oauth/
DConsumerProperties.java74 OAuthConsumer consumer; in getConsumer() local
76 consumer = pool.get(name); in getConsumer()
78 if (consumer == null) { in getConsumer()
79 consumer = newConsumer(name); in getConsumer()
84 pool.put(name, consumer); in getConsumer()
90 consumer = first; in getConsumer()
93 return consumer; in getConsumer()
105 OAuthConsumer consumer = new OAuthConsumer(consumerProperties in newConsumer() local
109 consumer.setProperty("name", name); in newConsumer()
111 consumer.setProperty("serviceProvider.baseURL", baseURL); in newConsumer()
[all …]
DOAuthAccessor.java38 public final OAuthConsumer consumer; field in OAuthAccessor
43 public OAuthAccessor(OAuthConsumer consumer) { in OAuthAccessor() argument
44 this.consumer = consumer; in OAuthAccessor()
77 method = (String) this.consumer.getProperty("httpMethod"); in newRequestMessage()
85 Object accepted = consumer.getProperty(OAuthConsumer.ACCEPT_ENCODING); in newRequestMessage()
Dconsumer.properties.sample1 # 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.
DOAuthMessage.java259 final OAuthConsumer consumer = accessor.consumer; in addRequiredParameters() local
261 addParameter(OAuth.OAUTH_CONSUMER_KEY, consumer.consumerKey); in addRequiredParameters()
265 signatureMethod = (String) consumer.getProperty(OAuth.OAUTH_SIGNATURE_METHOD); in addRequiredParameters()
/external/llvm/tools/llvm-diff/
DDifferenceEngine.h39 Engine.consumer.enterContext(L, R); in Context()
43 Engine.consumer.exitContext(); in ~Context()
61 DifferenceEngine(Consumer &consumer) in DifferenceEngine() argument
62 : consumer(consumer), globalValueOracle(nullptr) {} in DifferenceEngine()
67 consumer.log(text); in log()
70 return LogBuilder(consumer, text); in logf()
72 Consumer& getConsumer() const { return consumer; } in getConsumer()
86 Consumer &consumer;
DDiffLog.h30 Consumer &consumer; variable
42 : consumer(c), Format(Format) {} in LogBuilder()
61 Consumer &consumer; variable
64 DiffLogBuilder(Consumer &c) : consumer(c) {} in DiffLogBuilder()
DDiffLog.cpp23 consumer.logf(*this); in ~LogBuilder()
31 DiffLogBuilder::~DiffLogBuilder() { consumer.logd(*this); } in ~DiffLogBuilder()
/external/llvm/utils/lit/lit/
Drun.py69 def __init__(self, run_instance, provider, consumer): argument
72 self.consumer = consumer
80 self.consumer.task_finished()
91 self.consumer.update(test_index, test)
212 consumer = None
218 consumer = MultiprocessResultsConsumer(self, display, jobs)
224 consumer = None
225 if not consumer:
229 consumer = ThreadResultsConsumer(display)
250 run_one_tester(self, provider, consumer)
[all …]
/external/harfbuzz_ng/util/
Dmain-font-text.hh41 consumer (&options) {} in main_font_text_t()
58 consumer.init (&font_opts); in main()
64 consumer.consume_line (buffer, text, text_len, input.text_before, input.text_after); in main()
67 consumer.finish (&font_opts); in main()
69 return consumer.failed ? 1 : 0; in main()
76 consumer_t consumer; member
DMakefile.am35 shape-consumer.hh \
59 shape-consumer.hh \
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
Dopen_id.py77 from openid.consumer import consumer
113 self.oidconsumer = consumer.OpenIDConsumer(store)
198 if status in [consumer.HTTP_FAILURE, consumer.PARSE_ERROR]:
199 if status == consumer.HTTP_FAILURE:
206 elif status == consumer.SUCCESS:
243 if status == consumer.FAILURE and info:
250 elif status == consumer.SUCCESS:
/external/oauth/core/src/main/java/net/oauth/signature/
DRSA_SHA1.java97 Object privateKeyObject = accessor.consumer.getProperty(PRIVATE_KEY); in initialize()
114 Object publicKeyObject = accessor.consumer.getProperty(PUBLIC_KEY); in initialize()
129 Object certObject = accessor.consumer.getProperty(X509_CERTIFICATE); in initialize()
DOAuthSignatureMethod.java92 String secret = accessor.consumer.consumerSecret; in initialize()
99 accessorSecret = accessor.consumer.getProperty(key); in initialize()
/external/deqp/framework/delibs/dethread/
DdeThreadTest.c442 deThread consumer; in deSemaphore_selfTest() local
452 consumer = deThread_create(consumerThread, &testBuffer, DE_NULL); in deSemaphore_selfTest()
455 DE_TEST_ASSERT(consumer && producer); in deSemaphore_selfTest()
457 ret = deThread_join(consumer) && in deSemaphore_selfTest()
462 deThread_destroy(consumer); in deSemaphore_selfTest()
/external/skia/src/ports/
DSkImageDecoder_CG.cpp247 CGDataConsumerRef consumer = SkStreamToCGDataConsumer(stream); in SkStreamToImageDestination() local
248 if (NULL == consumer) { in SkStreamToImageDestination()
251 SkAutoTCallVProc<const void, CFRelease> arconsumer(consumer); in SkStreamToImageDestination()
253 return CGImageDestinationCreateWithDataConsumer(consumer, type, 1, NULL); in SkStreamToImageDestination()
/external/llvm/test/CodeGen/X86/
D2012-11-30-misched-dbg.ll81 …name: "MultiSource/Benchmarks/MiBench/consumer-typeset/z19.c", directory: "MultiSource/Benchmarks/…
86 …name: "MultiSource/Benchmarks/MiBench/consumer-typeset/z19.c", directory: "MultiSource/Benchmarks/…
Dstatepoint-allocas.ll3 ; exact meaning is up to the consumer of the stackmap) and as an explicit spill
/external/skia/src/utils/android/
DSkHwuiRenderer.cpp32 android::BufferQueue::createBufferQueue(&this->producer, &this->consumer); in initialize()
33 this->cpuConsumer = new android::CpuConsumer(this->consumer, 1); in initialize()
DSkHwuiRenderer.h27 android::sp<android::IGraphicBufferConsumer> consumer; member
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthClient.java158 accessor.consumer.serviceProvider.requestTokenURL, parameters); in getRequestToken()
195 accessor.consumer.serviceProvider.accessTokenURL, parameters); in getAccessToken()
217 String ps = (String) accessor.consumer.getProperty(PARAMETER_STYLE); in invoke()
/external/valgrind/drd/tests/
Dcircular_buffer.c167 static void consumer(int* id) in consumer() function
216 (void * (*)(void *)) consumer, &thread_arg[i]); in main()
/external/clang/lib/Frontend/
DChainedIncludesSource.cpp162 auto consumer = in createChainedIncludesSource() local
166 consumer->GetASTMutationListener()); in createChainedIncludesSource()
167 Clang->setASTConsumer(std::move(consumer)); in createChainedIncludesSource()
/external/kernel-headers/original/uapi/linux/
Dpps.h120 int consumer; /* selected kernel consumer */ member
/external/mesa3d/src/glsl/
Dlinker.cpp632 gl_shader *producer, gl_shader *consumer) in cross_validate_outputs_to_inputs() argument
658 foreach_list(node, consumer->ir) { in cross_validate_outputs_to_inputs()
2051 gl_shader *producer, gl_shader *consumer, in assign_varying_locations() argument
2071 if (consumer) in assign_varying_locations()
2072 link_invalidate_variable_locations(consumer, ir_var_in, FRAG_ATTRIB_VAR0); in assign_varying_locations()
2081 consumer ? consumer->symbols->get_variable(output_var->name) : NULL; in assign_varying_locations()
2109 if (consumer) { in assign_varying_locations()
2110 foreach_list(node, consumer->ir) { in assign_varying_locations()
2139 } else if (is_varying_var(consumer->Type, var)) { in assign_varying_locations()
/external/compiler-rt/
DREADME.android6 * - Changes due to the limitations in Android-based consumer electronics.

12