Searched defs:flow (Results 1 - 25 of 42) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DLineBoxListPainter.cpp51 RenderInline* flow = *it; local
52 InlinePainter(*flow).paintOutline(info, paintOffset);
H A DBlockPainter.cpp487 RenderInline* flow = *it; local
488 RenderBlock* block = flow->containingBlock();
492 InlinePainter(*flow).paintOutline(info, accumulatedPaintOffset);
/external/iproute2/doc/
H A Dapi-ip6-flowlabels.tex22 Every IPv6 packet carries 28 bits of flow information. RFC2460 splits
24 prefer this term) and 20 bits of flow label. Currently there exist
25 no well-defined API to manage IPv6 flow information. In this document
42 \item To assign flow labels to packets sent by user.
44 \item To get flow labels of received packets. I do not know
46 want to use flow labels to distinguish sub-flows.
48 \item To allocate flow labels in the way, compliant to RFC2460. Namely:
56 Flows with coinciding source address and flow label must have identical
65 with flow labels.
75 flow labe
[all...]
/external/qemu/distrib/sdl-1.2.15/src/audio/nas/
H A DSDL_nasaudio.h45 AuFlowID flow; member in struct:SDL_PrivateAudioData
/external/fio/
H A Dflow.c18 struct fio_flow *flow = td->flow; local
21 if (!flow)
24 sign = td->o.flow > 0 ? 1 : -1;
25 if (sign * flow->flow_counter > td->o.flow_watermark) {
35 * matter if the flow count is slightly inaccurate */
36 flow->flow_counter += td->o.flow;
42 struct fio_flow *flow = NULL; local
51 flow
77 flow_put(struct fio_flow *flow) argument
[all...]
/external/chromium_org/chrome/browser/extensions/api/identity/
H A Dgaia_web_auth_flow_unittest.cc103 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
104 flow->Start();
109 flow->OnAuthFlowTitleChange(GetFinalTitle("error=access_denied"));
113 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
114 flow->Start();
116 flow->OnAuthFlowTitleChange(GetFinalTitle("access_token=fake_access_token"));
120 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
121 flow->Start();
123 flow->OnAuthFlowTitleChange(
128 scoped_ptr<TestGaiaWebAuthFlow> flow local
142 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
158 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
173 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
185 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
197 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
204 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
218 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
229 scoped_ptr<TestGaiaWebAuthFlow> flow = CreateTestFlow(); local
[all...]
H A Didentity_apitest.cc292 void set_mint_token_flow(scoped_ptr<OAuth2MintTokenFlow> flow) { argument
293 flow_ = flow.Pass();
364 // Save the login token used to create the flow so tests can see
1088 // flow to be leaked.
1140 // The flow will be created after the first queued request clears.
1171 // Verify that we have fetched the login token and run the first flow.
1205 // Verify that we have fetched the login token and run the first flow.
1224 scoped_ptr<TestHangOAuth2MintTokenFlow> flow(
1226 func->set_mint_token_flow(flow.PassAs<OAuth2MintTokenFlow>());
/external/kernel-headers/original/uapi/linux/hsi/
H A Dhsi_char.h52 uint32_t flow; member in struct:hsc_rx_config
/external/tcpdump/
H A Dprint-ip6.c92 u_int flow; local
112 flow = EXTRACT_32BITS(&ip6->ip6_flow);
116 if (flow & 0x0f000000)
117 (void)ND_PRINT((ndo, "pri 0x%02x, ", (flow & 0x0f000000) >> 24));
118 if (flow & 0x00ffffff)
119 (void)ND_PRINT((ndo, "flowlabel 0x%06x, ", flow & 0x00ffffff));
122 if (flow & 0x0ff00000)
123 (void)ND_PRINT((ndo, "class 0x%02x, ", (flow & 0x0ff00000) >> 20));
124 if (flow & 0x000fffff)
125 (void)ND_PRINT((ndo, "flowlabel 0x%05x, ", flow
[all...]
/external/bluetooth/bluedroid/btif/include/
H A Dbtif_pan_internal.h82 int flow; // 1: outbound data flow on; 0: outbound data flow off member in struct:__anon1045
/external/bluetooth/bluedroid/stack/rfcomm/
H A Drfc_port_if.c134 UINT8 flow; local
144 /* Negotiate the flow control mechanism. If flow control mechanism for */
147 flow = (p_mcb->flow == PORT_FC_UNDEFINED) ? PORT_FC_DEFAULT : p_mcb->flow;
150 if (flow == PORT_FC_CREDIT)
270 ** Description This function is called by the port entity when flow
H A Dport_int.h47 #define PORT_FC_UNDEFINED 0 /* mux flow control mechanism not defined yet */
48 #define PORT_FC_TS710 1 /* use TS 07.10 flow control */
49 #define PORT_FC_CREDIT 2 /* use RFCOMM credit based flow control */
57 BOOLEAN peer_fc; /* TRUE if flow control is set based on peer's request */
58 BOOLEAN user_fc; /* TRUE if flow control is set based on user's request */
106 UINT8 flow; /* flow control mechanism for this mux */ member in struct:__anon1690
/external/chromium_org/media/audio/win/
H A Daudio_device_listener_win.cc20 static std::string FlowToString(EDataFlow flow) { argument
21 return (flow == eRender) ? "eRender" : "eConsole";
33 static std::string GetDeviceId(EDataFlow flow, argument
36 CoreAudioUtil::CreateDefaultDevice(flow, role);
136 EDataFlow flow, ERole role, LPCWSTR new_default_device_id) {
139 (flow != eRender && flow != eCapture)) {
146 flow == eRender ? (
165 << ", flow: " << FlowToString(flow)
135 OnDefaultDeviceChanged( EDataFlow flow, ERole role, LPCWSTR new_default_device_id) argument
[all...]
H A Dcore_audio_util_win_unittest.cc68 EDataFlow flow; member in struct:media::__anon8550
79 // Create default devices for all flow/role combinations above.
83 CoreAudioUtil::CreateDefaultDevice(data[i].flow, data[i].role);
85 EXPECT_EQ(data[i].flow, CoreAudioUtil::GetDataFlow(audio_device));
88 // Only eRender and eCapture are allowed as flow parameter.
123 EDataFlow flow; member in struct:media::__anon8551
132 // Get name and ID of default devices for all flow/role combinations above.
137 CoreAudioUtil::CreateDefaultDevice(data[i].flow, data[i].role);
H A Dcore_audio_util_win.cc215 // devices for the specified data-flow direction.
266 // Retrieve the default audio endpoint for the specified data-flow
444 bool CoreAudioUtil::DeviceIsDefault(EDataFlow flow, argument
448 ScopedComPtr<IMMDevice> device = CreateDefaultDevice(flow, role);
/external/chromium_org/chrome/browser/signin/
H A Deasy_unlock_toggle_flow.cc54 ToggleApiCall(EasyUnlockToggleFlow* flow,
80 EasyUnlockToggleFlow* flow,
89 flow_(flow),
184 LOG(ERROR) << "Easy unlock toggle flow, failed to get access token,"
201 LOG(ERROR) << "Easy unlock toggle flow, failed to mint access token,"
79 ToggleApiCall( EasyUnlockToggleFlow* flow, net::URLRequestContextGetter* context, const std::string& access_token, const std::string& phone_public_key, bool toggle_enable) argument
/external/chromium_org/chrome/browser/chromeos/login/supervised/
H A Dsupervised_user_creation_screen.cc211 UserFlow* flow = new SupervisedUserCreationFlow(manager_id); local
212 ChromeUserManager::Get()->SetUserFlow(manager_id, flow);
400 // We might reuse some error messages from ordinary user flow.
/external/chromium_org/third_party/icu/source/samples/layout/
H A Dpflow.c110 pf_object *flow; local
123 flow = NEW_ARRAY(pf_object, 1);
125 flow->fParagraphLayout = NULL;
126 flow->fParagraphCount = 0;
127 flow->fParagraphMax = PARA_GROW;
128 flow->fParagraphGrow = PARA_GROW;
129 flow->fLineCount = 0;
130 flow->fLinesMax = LINE_GROW;
131 flow->fLinesGrow = LINE_GROW;
132 flow
222 pf_close(pf_flow *flow) argument
245 pf_getAscent(pf_flow *flow) argument
252 pf_getLineHeight(pf_flow *flow) argument
259 pf_getLineCount(pf_flow *flow) argument
276 pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height) argument
315 pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.h156 unsigned int flow : 1; member in struct:nv50_ir::Target::OpInfo
H A Dnv50_ir.cpp974 FlowInstruction *flow = (i ? static_cast<FlowInstruction *>(i) : local
977 Instruction::clone(pol, flow);
978 flow->allWarp = allWarp;
979 flow->absolute = absolute;
980 flow->limit = limit;
981 flow->builtin = builtin;
984 flow->target.builtin = target.builtin;
987 flow->target.fn = target.fn;
990 flow->target.bb = pol.get<BasicBlock>(target.bb);
992 return flow;
[all...]
/external/icu/icu4c/source/samples/layout/
H A Dpflow.c110 pf_object *flow; local
123 flow = NEW_ARRAY(pf_object, 1);
125 flow->fParagraphLayout = NULL;
126 flow->fParagraphCount = 0;
127 flow->fParagraphMax = PARA_GROW;
128 flow->fParagraphGrow = PARA_GROW;
129 flow->fLineCount = 0;
130 flow->fLinesMax = LINE_GROW;
131 flow->fLinesGrow = LINE_GROW;
132 flow
222 pf_close(pf_flow *flow) argument
245 pf_getAscent(pf_flow *flow) argument
252 pf_getLineHeight(pf_flow *flow) argument
259 pf_getLineCount(pf_flow *flow) argument
276 pf_breakLines(pf_flow *flow, le_int32 width, le_int32 height) argument
315 pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) argument
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target.h156 unsigned int flow : 1; member in struct:nv50_ir::Target::OpInfo
/external/bluetooth/bluedroid/stack/btu/
H A Dbtu_hcif.c493 * We do not need to decrease window for host flow control,
494 * host flow control does not receive an event back from controller
922 FLOW_SPEC flow; local
926 STREAM_TO_UINT8 (flow.qos_flags, p);
927 STREAM_TO_UINT8 (flow.service_type, p);
928 STREAM_TO_UINT32 (flow.token_rate, p);
929 STREAM_TO_UINT32 (flow.peak_bandwidth, p);
930 STREAM_TO_UINT32 (flow.latency, p);
931 STREAM_TO_UINT32 (flow.delay_variation, p);
933 btm_qos_setup_complete(status, handle, &flow);
[all...]
/external/chromium_org/chrome/browser/chromeos/login/users/
H A Dchrome_user_manager_impl.cc972 UserFlow* flow) {
975 specific_flows_[user_id] = flow;
971 SetUserFlow(const std::string& user_id, UserFlow* flow) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DBreakingContextInlineHeaders.h166 inline bool requiresLineBoxForContent(RenderInline* flow, const LineInfo& lineInfo) argument
168 RenderObject* parent = flow->parent();
169 if (flow->document().inNoQuirksMode()
170 && (flow->style(lineInfo.isFirstLine())->lineHeight() != parent->style(lineInfo.isFirstLine())->lineHeight()
171 || flow->style()->verticalAlign() != parent->style()->verticalAlign()
172 || !parent->style()->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(flow->style()->font().fontMetrics())))
177 inline bool alwaysRequiresLineBox(RenderObject* flow) argument
182 return isEmptyInline(flow) && toRenderInline(flow)->hasInlineDirectionBordersPaddingOrMargin();

Completed in 609 milliseconds

12