HomeSort by relevance Sort by last modified time
    Searched full:verb (Results 1 - 25 of 210) sorted by null

1 2 3 4 5 6 7 8 9

  /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...]
  /external/llvm/docs/
Makefile 57 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html
58 $(Verb) $(DataInstall) $(HTML) $(DESTDIR)$(PROJ_docsdir)/html
59 $(Verb) $(DataInstall) $(PROJ_OBJ_DIR)/html.tar.gz $(DESTDIR)$(PROJ_docsdir)
63 $(Verb) $(RM) -rf $@ $(PROJ_OBJ_DIR)/html.tar
64 $(Verb) cd $(PROJ_SRC_DIR) && \
66 $(Verb) $(GZIPBIN) $(PROJ_OBJ_DIR)/html.tar
70 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html/doxygen
71 $(Verb) $(DataInstall) $(PROJ_OBJ_DIR)/doxygen.tar.gz $(DESTDIR)$(PROJ_docsdir)
72 $(Verb) cd $(PROJ_OBJ_DIR)/doxygen && \
80 $(Verb) if test -e $(PROJ_OBJ_DIR)/doxygen ; then
    [all...]
  /external/skia/src/gpu/gl/
GrGLPath.cpp 18 inline GrGLubyte verb_to_gl_path_cmd(const SkPath::Verb verb) {
32 GrAssert(verb >= 0 && (size_t)verb < GR_ARRAY_COUNT(gTable));
33 return gTable[verb];
37 inline int num_pts(const SkPath::Verb verb) {
51 GrAssert(verb >= 0 && (size_t)verb < GR_ARRAY_COUNT(gTable));
52 return gTable[verb];
    [all...]
  /external/skia/legacy/src/xml/
SkBML_XMLParser.cpp 86 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer)
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)
123 int data = verb & 31;
124 verb >>= 5;
128 if (verb == kStartElem_Value_Verb)
135 SkASSERT(verb == kStartElem_Index_Verb)
    [all...]
  /external/skia/src/xml/
SkBML_XMLParser.cpp 86 static void rattr(unsigned verb, SkStream& s, BMLW& rec, SkXMLWriter& writer)
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)
123 int data = verb & 31;
124 verb >>= 5;
128 if (verb == kStartElem_Value_Verb)
135 SkASSERT(verb == kStartElem_Index_Verb)
    [all...]
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_ucm.h 30 * Support for the verb/device/modifier core logic and API,
60 * An audio use case can be defined by a verb and device parameter. The verb
65 * It's intended clients will mostly only need to set the use case verb and
66 * device for each system use case change (as the verb and device parameters
83 * o Get the ALSA PCM playback and capture device PCMs for use case verb,
85 * o Get the TQ parameter for each use case verb, use case device and
93 * Use Case Verb.
95 * The use case verb is the main device audio action. e.g. the "HiFi" use
96 * case verb will configure the audio hardware for HiFi Music playbac
    [all...]
  /external/llvm/utils/llvm-lit/
Makefile 18 $(Verb)$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > lit.tmp
19 $(Verb)$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> lit.tmp
20 $(Verb)sed -f lit.tmp $< > $@
21 $(Verb)chmod +x $@
22 $(Verb)rm -f lit.tmp
  /external/skia/src/core/
SkEdgeBuilder.cpp 54 SkPath::Verb verb; local
56 while ((verb = clipper->next(pts)) != SkPath::kDone_Verb) {
57 switch (verb) {
86 SkPath::Verb verb; local
109 while ((verb = iter.next(pts, false)) != SkPath::kDone_Verb) {
110 switch (verb) {
128 SkDEBUGFAIL("unexpected verb");
133 while ((verb = iter.next(pts, false)) != SkPath::kDone_Verb)
168 SkPath::Verb verb; local
    [all...]
SkQuadClipper.h 34 The segments will be either lines or quads (based on SkPath::Verb), and
42 SkPath::Verb next(SkPoint pts[]);
46 SkPath::Verb* fCurrVerb;
53 SkPath::Verb fVerbs[kMaxVerbs];
  /external/clang/docs/
Makefile 51 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html
52 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html/img
53 $(Verb) $(DataInstall) $(HTML) $(DESTDIR)$(PROJ_docsdir)/html
54 # $(Verb) $(DataInstall) $(IMAGES) $(DESTDIR)$(PROJ_docsdir)/html/img
55 $(Verb) $(DataInstall) $(PROJ_OBJ_DIR)/html.tar.gz $(DESTDIR)$(PROJ_docsdir)
59 $(Verb) $(RM) -rf $@ $(PROJ_OBJ_DIR)/html.tar
60 $(Verb) cd $(PROJ_SRC_DIR) && \
62 $(Verb) $(GZIPBIN) $(PROJ_OBJ_DIR)/html.tar
66 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_docsdir)/html/doxygen
67 $(Verb) $(DataInstall) $(PROJ_OBJ_DIR)/doxygen.tar.gz $(DESTDIR)$(PROJ_docsdir
    [all...]
  /external/llvm/tools/llvm-config/
Makefile 40 $(Verb) $(ECHO) 's/@LLVM_SRC_ROOT@/$(subst /,\/,$(LLVM_SRC_ROOT))/' \
42 $(Verb) $(ECHO) 's/@LLVM_OBJ_ROOT@/$(subst /,\/,$(LLVM_OBJ_ROOT))/' \
44 $(Verb) $(ECHO) 's/@LLVM_CPPFLAGS@/$(subst /,\/,$(SUB_CPPFLAGS))/' \
46 $(Verb) $(ECHO) 's/@LLVM_CFLAGS@/$(subst /,\/,$(SUB_CFLAGS))/' \
48 $(Verb) $(ECHO) 's/@LLVM_CXXFLAGS@/$(subst /,\/,$(SUB_CXXFLAGS))/' \
50 $(Verb) $(ECHO) 's/@LLVM_LDFLAGS@/$(subst /,\/,$(SUB_LDFLAGS))/' \
52 $(Verb) $(ECHO) 's/@LLVM_BUILDMODE@/$(subst /,\/,$(BuildMode))/' \
54 $(Verb) $(ECHO) 's/@LLVM_SYSTEM_LIBS@/$(subst /,\/,$(LIBS))/' \
56 $(Verb) $(ECHO) 's/@LLVM_TARGETS_BUILT@/$(subst /,\/,$(TARGETS_TO_BUILD))/' \
58 $(Verb) $(SED) -f temp.sed < $< > $
    [all...]
  /external/skia/legacy/src/core/
SkEdgeBuilder.cpp 52 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)
    [all...]
SkQuadClipper.h 34 The segments will be either lines or quads (based on SkPath::Verb), and
42 SkPath::Verb next(SkPoint pts[]);
46 SkPath::Verb* fCurrVerb;
53 SkPath::Verb fVerbs[kMaxVerbs];
  /external/clang/include/clang/AST/
Makefile 18 $(Verb) $(ClangTableGen) -gen-clang-attr-classes -o $(call SYSPATH, $@) \
24 $(Verb) $(ClangTableGen) -gen-clang-attr-impl -o $(call SYSPATH, $@) \
30 $(Verb) $(ClangTableGen) -gen-clang-attr-dump -o $(call SYSPATH, $@) \
36 $(Verb) $(ClangTableGen) -gen-clang-stmt-nodes -o $(call SYSPATH, $@) $<
41 $(Verb) $(ClangTableGen) -gen-clang-decl-nodes -o $(call SYSPATH, $@) $<
46 $(Verb) $(ClangTableGen) -gen-clang-comment-nodes -o $(call SYSPATH, $@) $<
51 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags -o $(call SYSPATH, $@) $<
56 $(Verb) $(ClangTableGen) -gen-clang-comment-html-tags-properties -o $(call SYSPATH, $@) $<
62 $(Verb) $(ClangTableGen) -gen-clang-comment-html-named-character-references -o $(call SYSPATH, $@) $<
67 $(Verb) $(ClangTableGen) -gen-clang-comment-command-info -o $(call SYSPATH, $@) $
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
hda_hwdep.h 26 /* verb */
30 #define HDA_VERB(nid,verb,param) ((nid)<<24 | (verb)<<8 | (param))
33 u32 verb; /* HDA_VERB() */ member in struct:hda_verb_ioctl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
hda_hwdep.h 26 /* verb */
30 #define HDA_VERB(nid,verb,param) ((nid)<<24 | (verb)<<8 | (param))
33 u32 verb; /* HDA_VERB() */ member in struct:hda_verb_ioctl
  /external/clang/utils/ABITest/
Makefile.test.common 27 Verb := @
67 $(Verb) diff $^ > $@ || true
70 $(Verb) diff $^ > $@ || true
73 $(Verb) diff $^ > $@ || true
76 $(Verb) diff $^ > $@ || true
79 $(Verb) zipdifflines \
87 -$(Verb) ./$< > $@
93 $(Verb) $(CC) $(CFLAGS) $(CC_CFLAGS) -O3 -o $@ $^
96 $(Verb) $(CC) $(CFLAGS) $(CC_CFLAGS) -O3 -o $@ $^
99 $(Verb) $(CC) $(CFLAGS) $(CC_CFLAGS) -O3 -o $@ $
    [all...]
  /external/skia/bench/
PathIterBench.cpp 72 SkPath::Verb verb; variable
75 while ((verb = iter.next(pts)) != SkPath::kDone_Verb);
80 SkPath::Verb verb; variable
83 while ((verb = iter.next(pts)) != SkPath::kDone_Verb);
  /external/llvm/bindings/ocaml/
Makefile.ocaml 138 $(Verb) $(CP) -f $< $@
141 $(Verb) $(CP) -f $< $@
148 $(Verb) $(OCAMLDEP) $(OCAMLCFLAGS) $(OcamlSources) $(OcamlHeaders) > $@
156 $(Verb) $(OCAMLDEP) $(OCAMLCFLAGS) $(OcamlSources) $(OcamlHeaders) > $@
171 -$(Verb) $(RM) -f $@
172 $(Verb) $(Archive) $@ $(ObjectsO)
173 $(Verb) $(Ranlib) $@
176 -$(Verb) $(RM) -f $(LibraryA)
180 $(Verb) $(MKDIR) $(PROJ_libocamldir)
181 $(Verb) $(INSTALL) $(LibraryA) $(DestA
    [all...]
  /external/clang/include/clang/Driver/
Makefile 10 $(Verb) $(ClangTableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
14 $(Verb) $(ClangTableGen) -gen-opt-parser-defs -o $(call SYSPATH, $@) $<
  /external/clang/include/clang/Serialization/
Makefile 12 $(Verb) $(ClangTableGen) -gen-clang-attr-pch-read -o $(call SYSPATH, $@) \
18 $(Verb) $(ClangTableGen) -gen-clang-attr-pch-write -o $(call SYSPATH, $@) \
  /external/clang/include/clang/Sema/
Makefile 13 $(Verb) $(ClangTableGen) -gen-clang-attr-template-instantiate -o \
19 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-list -o \
25 $(Verb) $(ClangTableGen) -gen-clang-attr-parsed-attr-kinds -o \
31 $(Verb) $(ClangTableGen) -gen-clang-attr-spelling-index -o \
  /external/clang/include/clang-c/
Makefile 10 $(Verb) $(MKDIR) $(IntIncludeDir)
11 $(Verb) if test -d "$(PROJ_SRC_DIR)" ; then \
26 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/tools/clang/include/clang-c" ; then \

Completed in 793 milliseconds

1 2 3 4 5 6 7 8 9