/external/iproute2/doc/ |
ip-tunnels.tex | 12 \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|tunnel| device module and \verb|ipip| module [all...] |
ip-cref.tex | 12 \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|-V|, \verb|-Version [all...] |
api-ip6-flowlabels.tex | 12 \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_flowinfo| fiel [all...] |
arpd.sgml | 19 <tscreen><verb> 21 </verb></tscreen> 97 <tscreen><verb> 99 </verb></tscreen> 103 <tscreen><verb> 106 </verb></tscreen> 110 <tscreen><verb> 112 </verb></tscreen> 119 <tscreen><verb> 121 </verb></tscreen [all...] |
rtstat.sgml | 33 <tscreen><verb> 35 </verb></tscreen>
|
ss.sgml | 132 <tscreen><verb> 134 </verb></tscreen> 161 <tscreen><verb> 167 </verb></tscreen> 179 <tscreen><verb> 184 </verb></tscreen> 188 <tscreen><verb> 190 </verb></tscreen> 200 <tscreen><verb> 202 </verb></tscreen [all...] |
/sdk/sdkmanager/app/src/com/android/sdkmanager/ |
CommandLineProcessor.java | 41 * - Each action is defined as a "verb object" followed by parameters. 49 /** Internal verb name for internally hidden flags. */ 52 /** String to use when the verb doesn't need any object. */ 62 /** Verb requested by the user. Null if none specified, which will be an error. */ 70 * This list serves two purposes: first it is used to know which verb/object 76 * <li> the verb. 92 * The key is a string "verb/directObject/longName". 123 * Indicates if this command-line can work when no verb is specified. 124 * The default is false, which generates an error when no verb/object is specified. 126 * of verb/action 233 String verb = null; local [all...] |
/external/skia/src/core/ |
SkEdgeBuilder.cpp | 45 SkPath::Verb verb; local 47 while ((verb = clipper->next(pts)) != SkPath::kDone_Verb) { 48 switch (verb) { 81 SkPath::Verb verb; local 88 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { 89 switch (verb) { 114 SkASSERT(!"unexpected verb"); 119 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) [all...] |
SkQuadClipper.h | 41 The segments will be either lines or quads (based on SkPath::Verb), and 49 SkPath::Verb next(SkPoint pts[]); 53 SkPath::Verb* fCurrVerb; 60 SkPath::Verb fVerbs[kMaxVerbs];
|
SkPath.cpp | 740 Verb verb; local 744 while ((verb = iter.next(pts)) != kDone_Verb) { 745 switch (verb) { 766 SkASSERT(!"unknown verb"); 848 SkASSERT(!"bad verb"); 904 SkPath::Verb verb; local 906 while ((verb = iter.next(pts)) != kDone_Verb) { 907 switch (verb) { 1071 unsigned verb = *fVerbs++; local 1257 Verb verb; local [all...] |
SkEdgeClipper.cpp | 464 SkPath::Verb SkEdgeClipper::next(SkPoint pts[]) { 465 SkPath::Verb verb = *fCurrVerb; 467 switch (verb) { 486 SkASSERT(!"unexpected verb in quadclippper2 iter"); 489 return verb;
|
SkRegion_path.cpp | 233 SkPath::Verb verb; local 239 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { 240 maxEdges += gPathVerbToMaxEdges[verb]; 242 int lastIndex = gPathVerbToInitialLastIndex[verb]; 251 } else if (SkPath::kMove_Verb == verb) {
|
/external/skia/src/xml/ |
SkBML_XMLParser.cpp | 94 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) 96 int data = verb & 31; 97 verb >>= 5; 101 switch (verb) { 123 SkASSERT(!"bad verb"); 129 static void relem(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer) 131 int data = verb & 31; 132 verb >>= 5; 136 if (verb == kStartElem_Value_Verb) 143 SkASSERT(verb == kStartElem_Index_Verb) [all...] |
/external/skia/include/core/ |
SkEdgeClipper.h | 30 SkPath::Verb next(SkPoint pts[]); 34 SkPath::Verb* fCurrVerb; 41 SkPath::Verb fVerbs[kMaxVerbs];
|
/external/skia/src/effects/ |
SkCornerPathEffect.cpp | 53 SkPath::Verb verb, prevVerb = (SkPath::Verb)-1; local 67 switch (verb = iter.next(pts)) { 136 prevVerb = verb;
|
Sk1DPathEffect.cpp | 123 SkPath::Verb verb; local 125 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) 127 switch (verb) { 149 SkASSERT(!"unknown verb");
|
/external/dnsmasq/contrib/port-forward/ |
dnsmasq-portforward | 46 verb=removed 58 verb=added 61 echo " DNAT $protocol $src to ${3}:$dst ${verb}." >>${LOGFILE}
|
/external/icu4c/layout/ |
IndicRearrangementProcessor.h | 34 void doRearrangementAction(LEGlyphStorage &glyphStorage, IndicRearrangementVerb verb) const;
|
/external/skia/include/utils/ |
SkDumpCanvas.h | 19 enum Verb { 46 virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[], 112 void dump(Verb, const SkPaint*, const char format[], ...); 126 virtual void dump(SkDumpCanvas*, SkDumpCanvas::Verb, const char str[],
|
/sdk/sdkmanager/app/tests/com/android/sdkmanager/ |
CommandLineProcessorTest.java | 51 public void printHelpAndExitForAction(String verb, String directObject, 54 super.printHelpAndExitForAction(verb, directObject, errorFormat, args); 135 assertTrue(c.getStdErr().indexOf("Missing verb name.") != -1); 142 assertTrue(c.getStdErr().indexOf("Missing verb name.") != -1); 151 assertTrue(c.getStdErr().indexOf("Missing verb name.") == -1); 157 assertTrue(c.getStdErr().indexOf("Missing verb name.") == -1);
|
SdkCommandLineTest.java | 40 public void printHelpAndExitForAction(String verb, String directObject, 43 super.printHelpAndExitForAction(verb, directObject, errorFormat, args);
|
/cts/tests/tests/widget/src/android/widget/cts/ |
RelativeLayout_LayoutParamsTest.java | 207 "3. not clear what is supposed to happen when verb is exceptional." + 208 "4. not clear what is supposed to happen if verb is must refer to another sibling.") 219 // not clear what is supposed to happen if verb is must refer to another sibling. 229 // issue 1695243, not clear what is supposed to happen when verb is exceptional. 236 // issue 1695243, not clear what is supposed to happen when verb is exceptional. 253 "1. not clear what is supposed to happen when verb is exceptional.") 288 // issue 1695243, not clear what is supposed to happen when verb is exceptional. 295 // issue 1695243, not clear what is supposed to happen when verb is exceptional.
|
/external/webkit/WebKit/chromium/public/ |
WebDragOperation.h | 38 // "Verb" of a drag-and-drop operation as negotiated between the source and
|
/external/webkit/WebCore/platform/graphics/skia/ |
PathSkia.cpp | 231 SkPath::Verb verb; local 234 verb = iter.next(pts); 235 switch (verb) { 265 } while (verb != SkPath::kDone_Verb);
|
/external/skia/src/utils/ |
SkDumpCanvas.cpp | 170 void SkDumpCanvas::dump(Verb verb, const SkPaint* paint, 181 fDumper->dump(this, verb, buffer, paint); 427 void SkFormatDumper::dump(SkDumpCanvas* canvas, SkDumpCanvas::Verb verb, 446 if (SkDumpCanvas::kDrawText_Verb == verb) {
|