Searched refs:verb (Results 1 - 25 of 72) sorted by relevance

123

/external/iproute2/doc/
H A Dip-tunnels.tex12 \verb|kuznet@ms2.inr.ac.ru| \\
36 will create tunnel device with name \verb|MY-TUNNEL|. Now you may configure
41 Certainly, if you prefer name \verb|tunl1| to \verb|MY-TUNNEL|,
51 work in 2.2.0! Moreover, \verb|route| prints a funny error sort of
53 to 10.0.0.0 via \verb|tunl0| in routing table.
62 Note keyword \verb|onlink|, it is the magic key that orders kernel
74 that between \verb|route add| and \verb|route del| host 193.233.7.65 is
78 Q: In 2.0.36 I used to load \verb|tunne
[all...]
H A Dip-cref.tex12 \verb|kuznet@ms2.inr.ac.ru| \\
24 This document presents a comprehensive description of the \verb|ip| utility
25 from the \verb|iproute2| package. It is not a tutorial or user's guide.
33 This document is split into sections explaining \verb|ip| commands
34 and options, decrypting \verb|ip| output and containing a few examples.
43 The generic form of an \verb|ip| command is:
47 where \verb|OPTIONS| is a set of optional modifiers affecting the
48 general behaviour of the \verb|ip| utility or changing its output. All options
49 begin with the character \verb|'-'| and may be used in either long or abbreviated
53 \item \verb|
[all...]
H A Dapi-ip6-flowlabels.tex12 \verb|kuznet@ms2.inr.ac.ru| \\
93 \verb|sin6_flowinfo| field added to \verb|struct| \verb|sockaddr_in6|
102 hole in \verb|sockaddr_in6| in any case. Now it has no justification.
106 if \verb|recvmsg()| initializes \verb|sin6_flowinfo| to flow info
112 RFC2553 adds new requirement: to clear \verb|sin6_flowinfo|.
119 initialize \verb|sin6_flowinfo| at all, so that, if kernel does not
135 By default Linux IPv6 does not read \verb|sin6_flowinf
[all...]
/external/skia/src/xml/
H A DSkBML_XMLParser.cpp86 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
88 int data = verb & 31;
89 verb >>= 5;
93 switch (verb) {
115 SkDEBUGFAIL("bad verb");
121 static void relem(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) argument
123 int data = verb & 31;
124 verb >>= 5;
128 if (verb == kStartElem_Value_Verb)
135 SkASSERT(verb
[all...]
/external/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward46 verb=removed
58 verb=added
61 echo " DNAT $protocol $src to ${3}:$dst ${verb}." >>${LOGFILE}
/external/skia/src/core/
H A DSkEdgeBuilder.cpp52 SkPath::Verb verb; local
54 while ((verb = clipper->next(pts)) != SkPath::kDone_Verb) {
55 switch (verb) {
88 SkPath::Verb verb; local
95 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
96 switch (verb) {
121 SkDEBUGFAIL("unexpected verb");
126 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
127 switch (verb) {
153 SkDEBUGFAIL("unexpected verb");
[all...]
H A DSkRegion_path.cpp225 SkPath::Verb verb; local
231 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
232 maxEdges += gPathVerbToMaxEdges[verb];
234 int lastIndex = gPathVerbToInitialLastIndex[verb];
243 } else if (SkPath::kMove_Verb == verb) {
H A DSkPath.cpp550 // don't add a close if it's the first verb or a repeat
975 Verb verb; local
979 while ((verb = iter.next(pts)) != kDone_Verb) {
980 switch (verb) {
1001 SkDEBUGFAIL("unknown verb");
1083 SkDEBUGFAIL("bad verb");
1132 SkASSERT(!"unexpected verb");
1186 SkPath::Verb verb; local
1188 while ((verb = iter.next(pts)) != kDone_Verb) {
1189 switch (verb) {
1351 unsigned verb = *fVerbs; local
1434 unsigned verb = *fVerbs++; local
1534 unsigned verb = *fVerbs++; local
1617 Verb verb; local
1812 SkPath::Verb verb; local
[all...]
H A DSkScan_Hairline.cpp281 SkPath::Verb verb;
283 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
284 switch (verb) {
H A DSkStroke.cpp579 SkPath::Verb verb, lastSegment = SkPath::kMove_Verb; local
581 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
582 switch (verb) {
590 lastSegment = verb;
595 lastSegment = verb;
600 lastSegment = verb;
H A DSkEdgeClipper.cpp467 SkPath::Verb verb = *fCurrVerb;
469 switch (verb) {
488 SkDEBUGFAIL("unexpected verb in quadclippper2 iter");
491 return verb;
/external/icu4c/layout/
H A DIndicRearrangementProcessor.h34 void doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const;
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DGLExtras.cpp93 SkPath::Verb verb; local
97 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
98 if (verb == SkPath::kLine_Verb) {
129 if (verb == SkPath::kMove_Verb) {
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dexif_reader.js15 postMessage({verb: 'give-exif',
34 postMessage({verb: 'give-exif-error',
154 if (this.messageHandlers.hasOwnProperty(data.verb)) {
155 //this.log('dispatching: ' + data.verb + ': ' + data.arguments);
156 this.messageHandlers[data.verb].apply(this, data.arguments);
158 this.log('Unknown message from client: ' + data.verb, data);
164 postMessage({verb: 'log', arguments: ary});
/external/skia/samplecode/
H A DSampleLineClipper.cpp99 SkPath::Verb verb; local
100 while ((verb = clipper.next(pts)) != SkPath::kDone_Verb) {
101 switch (verb) {
111 SkASSERT(!"unexpected verb");
124 SkPath::Verb verb; local
125 while ((verb = clipper.next(pts)) != SkPath::kDone_Verb) {
126 switch (verb) {
136 SkASSERT(!"unexpected verb");
/external/skia/src/effects/
H A DSk1DPathEffect.cpp108 SkPath::Verb verb; local
110 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) {
111 switch (verb) {
133 SkDEBUGFAIL("unknown verb");
H A DSkCornerPathEffect.cpp45 SkPath::Verb verb, prevVerb = (SkPath::Verb)-1; local
59 switch (verb = iter.next(pts)) {
126 prevVerb = verb;
/external/bzip2/
H A Dblocksort.c216 Int32 verb )
229 if (verb >= 4)
263 if (verb >= 4)
308 if (verb >= 4)
320 if (verb >= 4)
756 Int32 verb,
767 if (verb >= 4) VPrintf0 ( " main sort initialise ...\n" );
800 if (verb >= 4) VPrintf0 ( " bucket sorting ...\n" );
893 if (verb >= 4)
1008 if (verb >
751 mainSort( UInt32* ptr, UChar* block, UInt16* quadrant, UInt32* ftab, Int32 nblock, Int32 verb, Int32* budget ) argument
1037 Int32 verb = s->verbosity; local
[all...]
/external/skia/src/pdf/
H A DSkPDFUtils.cpp104 for (SkPath::Verb verb = iter.next(args);
105 verb != SkPath::kDone_Verb;
106 verb = iter.next(args)) {
108 switch (verb) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpclient.cc63 bool verb_allows_cache = (t.request.verb == HV_GET)
64 || (t.request.verb == HV_HEAD);
170 if (HV_GET != request.verb)
197 id.append(ToString(request.verb));
404 request().verb = HV_GET;
414 request().verb = HV_POST;
434 || (HV_HEAD == request().verb)
435 || (HV_GET == request().verb);
581 && (HV_HEAD != request().verb)
667 if ((request().verb
[all...]
H A Dhttpcommon.cc152 const char* ToString(HttpVerb verb) { argument
153 return Enum<HttpVerb>::Name(verb);
156 bool FromString(HttpVerb& verb, const std::string& str) { argument
157 return Enum<HttpVerb>::Parse(verb, str);
510 verb = HV_GET;
517 verb = src.verb;
525 return sprintfn(buffer, size, "%s %.*s HTTP/%s", ToString(verb), path.size(),
547 if (!FromString(verb, sverb.c_str())) {
555 if (HV_CONNECT == verb)
[all...]
H A Dhttpcommon.h146 const char* ToString(HttpVerb verb);
147 bool FromString(HttpVerb& verb, const std::string& str);
397 HttpVerb verb; member in struct:talk_base::HttpRequestData
400 HttpRequestData() : verb(HV_GET) { }
/external/skia/src/utils/
H A DSkParsePath.cpp206 static void append_scalars(SkWStream* stream, char verb, const SkScalar data[], argument
208 stream->write(&verb, 1);
H A DSkDumpCanvas.cpp164 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint, argument
175 fDumper->dump(this, verb, buffer, paint);
419 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb, argument
438 if (SkDumpCanvas::kDrawText_Verb == verb) {
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnPathProcessor.cpp620 SkPath::Verb verb; local
625 verb = iter.next(points);
626 if (verb != SkPath::kMove_Verb) {
632 switch (verb) {
704 } while (verb != SkPath::kDone_Verb);

Completed in 406 milliseconds

123