HomeSort by relevance Sort by last modified time
    Searched refs:flow (Results 151 - 175 of 226) sorted by null

1 2 3 4 5 67 8 910

  /system/bt/btif/co/
bta_pan_co.c 48 ** Returns Data flow mask.
102 btpan_cb.flow = 1;
270 ** Returns TRUE if flow enabled
294 ** data flow on the RX path when it is configured to use
295 ** a push interface. If data flow is disabled the phone must
297 ** until data flow is enabled again.
  /system/bt/stack/btm/
btm_acl.c     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
credentials_lib.py 450 flow = oauth2client.client.OAuth2WebServerFlow(**client_info)
452 credentials = tools.run_flow(flow, credential_store, flags)
  /system/bt/stack/rfcomm/
rfc_port_fsm.c 403 if ((p_port->rfc.p_mcb->flow == PORT_FC_CREDIT)
662 /* If we were proposing RTR flow control try RTC flow control */
663 /* If we were proposing RTC flow control try no flow control */
678 /* Other side does not support flow control */
727 /* Check if this command is passed only to indicate flow control */
732 if (p_port->rfc.p_mcb->flow != PORT_FC_CREDIT)
734 /* Spec 1.1 indicates that only FC bit is used for flow control */
port_utils.c 410 ** Description Check the current user flow control and if necessary return
412 ** flow control type.
421 /* Flow control to the user can be caused by flow controlling by the peer */
422 /* (FlowInd, or flow control by the peer RFCOMM (Fcon) or internally if */
492 ** Description Send flow control messages to the peer for both enabling
493 ** and disabling flow control, for both credit-based and
494 ** TS 07.10 flow control mechanisms.
504 /* If using credit based flow control */
505 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT
    [all...]
port_api.c 808 ** flow control message to the peer device. Enable flag passed
812 ** enable - enables data flow
843 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT)
862 /* to the application because we were flow controlled */
885 ** flow control message to the peer device. Enable flag passed
887 ** when data flow enabled
890 ** enable - enables data flow
922 if (p_port->rfc.p_mcb->flow == PORT_FC_CREDIT)
941 /* to the application because we were flow controlled */
    [all...]
  /build/tools/droiddoc/templates-sdk-dev/
customizations.cs 119 <div class="resource-flow-layout" data-history-query="history:most/visited" data-maxresults="3" data-cardsizes="18x2"></div>
124 <div class="resource-flow-layout cols" data-history-query="history:recent" data-allow-duplicates="true" data-maxresults="3" data-cardsizes="18x2"></div>
  /external/fio/
cconv.c 235 o->flow = __le32_to_cpu(top->flow);
396 top->flow = __cpu_to_le32(o->flow);
fio.h 41 #include "flow.h"
336 struct fio_flow *flow; member in struct:thread_data
  /external/llvm/include/llvm/Support/
YAMLTraits.h 48 // The optional flow flag will cause generated YAML to use a flow mapping
50 // static const bool flow = true;
71 /// of bit values and the YAML representation is a flow sequence of
168 // a flow sequence (e.g. [a,b,c]).
169 // static const bool flow = true;
326 struct Fallback { bool flow; }; member in struct:llvm::yaml::has_FlowTraits::Fallback
330 static char (&f(SameType<bool Fallback::*, &C::flow>*))[1];
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test.cc 65 // TODO(holmer): Further optimize this by looking for consecutive flow ids
217 ss << "Throughput flow " << kv.first;
224 ss << "Delay flow " << kv.first;
315 for (int flow : media_flow_ids) {
317 new RateCounterFilter(&uplink_, flow, "Receiver", bwe_names[bwe_type]));
319 for (int flow : tcp_flow_ids) {
320 rate_counters.push_back(new RateCounterFilter(&uplink_, flow, "Receiver",
328 // Delays is being plotted only for the first flow.
383 // Pointless to show delay histogram for TCP flow.
502 // Delays is being plotted only for the first flow
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 140 int64 flow = 0; local
245 flow += min_weight;
364 return flow;
  /external/autotest/site_utils/
test_push.py 236 # Let's verify the repair flow and powerwash the duts. We can
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
LabelFlowAnalyzerTest.java 12 package org.jacoco.core.internal.flow;
MethodProbesAdapterTest.java 12 package org.jacoco.core.internal.flow;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/emitter/
Emitter.java 111 // Flow level.
133 // pretty print flow by adding extra line breaks
167 // Flow level.
261 private void increaseIndent(boolean flow, boolean indentless) {
264 if (flow) {
429 // Flow sequence handlers.
483 // Flow mapping handlers.
    [all...]
  /frameworks/rs/api/
rs_allocation_create.spec 23 function. If some control-flow path can result in a call to these functions
  /prebuilts/misc/common/ecj/
ecj.jar 
  /prebuilts/sdk/tools/
jack-jacoco-reporter.jar 
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target_nv50.cpp 159 opInfo[i].flow = (i >= OP_BRA && i <= OP_JOIN);
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 304 opInfo[i].flow = (i >= OP_BRA && i <= OP_JOIN);
  /external/opencv3/modules/cudaoptflow/src/
farneback.cpp 130 virtual void calc(InputArray I0, InputArray I1, InputOutputArray flow, Stream& stream);
tvl1flow.cpp 116 virtual void calc(InputArray I0, InputArray I1, InputOutputArray flow, Stream& stream);
269 // pyramidal structure for computing the optical flow
272 // compute the optical flow at the current scale
279 // otherwise, upsample the optical flow
281 // zoom the optical flow for the next finer scale
289 // scale the optical flow with the appropriate zoom factor
  /external/opencv3/modules/java/src/
video.cpp 63 // void calc(Mat I0, Mat I1, Mat& flow)
77 Mat& flow = *((Mat*)flow_nativeObj); local
78 (*me)->calc( I0, I1, flow );
434 // void calcOpticalFlowFarneback(Mat prev, Mat next, Mat& flow, double pyr_scale, int levels, int winsize, int iterations, int poly_n, double poly_sigma, int flags)
447 Mat& flow = *((Mat*)flow_nativeObj); local
448 cv::calcOpticalFlowFarneback( prev, next, flow, (double)pyr_scale, (int)levels, (int)winsize, (int)iterations, (int)poly_n, (double)poly_sigma, (int)flags );
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.5.1/
ecj-4.5.1.jar 

Completed in 904 milliseconds

1 2 3 4 5 67 8 910