HomeSort by relevance Sort by last modified time
    Searched full:automaton (Results 26 - 50 of 127) sorted by null

12 3 4 5 6

  /prebuilts/build-tools/common/bison/xslt/
xml2xhtml.xsl 43 <xsl:text> - GNU Bison XML Automaton Report</xsl:text>
92 XML Automaton Report.<br />
101 <h1>GNU Bison XML Automaton Report</h1>
129 <li><a href="#automaton">Automaton</a></li>
133 <xsl:apply-templates select="automaton" mode="conflicts"/>
135 <xsl:apply-templates select="automaton"/>
254 <xsl:template match="automaton" mode="conflicts">
368 <xsl:template match="automaton">
370 <a name="automaton"/>
    [all...]
xml2text.xsl 40 <xsl:apply-templates select="automaton" mode="conflicts"/>
42 <xsl:apply-templates select="automaton"/>
189 <xsl:template match="automaton" mode="conflicts">
224 <xsl:template match="automaton">
230 <xsl:template match="automaton/state">
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
dlgauto.h 1 /* dlgauto.h automaton
267 sprintf(zzebuf,"Invalid automaton mode = %d ",m);
364 /* interactive version of automaton */
411 /* non-interactive version of automaton */
DLexerBase.h 145 int automaton; member in class:DLGLexerBase
157 void mode(int k); /* switch to automaton 'k' */
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
dlgauto.h 1 /* dlgauto.h automaton
267 sprintf(zzebuf,"Invalid automaton mode = %d ",m);
359 /* interactive version of automaton */
406 /* non-interactive version of automaton */
DLexerBase.h 141 int automaton; member in class:DLGLexerBase
153 void mode(int k); /* switch to automaton 'k' */
  /external/scapy/scapy/layers/tls/
automaton.py 12 from scapy.automaton import Automaton
22 class _TLSAutomaton(Automaton):
205 We believe a good automaton should not use the first test.
automaton_srv.py 7 TLS server automaton. This makes for a primitive TLS stack.
24 from scapy.automaton import ATMT
25 from scapy.layers.tls.automaton import _TLSAutomaton
39 A simple TLS test server automaton. Try to overload some states or
42 Because of socket and automaton limitations, for now, the best way to
52 _'preferred_ciphersuite' allows the automaton to choose a cipher suite when
111 s = "----- Scapy TLS Server Automaton -----\n\n"
128 self.vprint("Starting TLS server automaton.")
883 self.vprint("Ending TLS server automaton.")
automaton_cli.py 7 TLS client automaton. This makes for a primitive TLS stack.
25 from scapy.automaton import ATMT
26 from scapy.layers.tls.automaton import _TLSAutomaton
44 A simple TLS test client automaton. Try to overload some states or
130 self.vprint("Starting TLS client automaton.")
942 self.vprint("Ending TLS client automaton.")
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
output.c 5 * DfaStates == number of dfa nodes in automaton (just a #define)
6 * DfaState == type large enough to index every node in automaton
9 * Thus, the elements in each of the automaton states (st%d) are type DfaState
11 * automaton state.
13 * dfa[] == a linear array that points to all the automaton states (st%d)
25 * the automaton.
29 * in the automaton.
234 fprintf(class_stream, "\tint ZZSHIFT(int c) { return b_class_no[automaton][1+c]; }\n");
dlg1.txt 47 -ci The automaton will treat upper and lower case charac-
  /external/scapy/test/
linux.uts 11 = TCP client automaton
12 ~ automaton netaccess linux needs_root
  /external/skia/src/sksl/lex/
NFAtoDFA.h 21 * Converts a nondeterministic finite automaton to a deterministic finite automaton. Since NFAs and
  /external/skqp/src/sksl/lex/
NFAtoDFA.h 21 * Converts a nondeterministic finite automaton to a deterministic finite automaton. Since NFAs and
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
SequencePusher.java 47 /** Current state in the automaton. */
57 * This follows a small automaton which makes the right events and conditions overlap:
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
rexpr.c 149 static int match(NodePtr automaton,char *s)
151 static int match(automaton, s)
152 NodePtr automaton;
158 if ( automaton == accept && *s == '\0' ) return 1; /* match */
160 for (p=automaton->arcs; p!=NULL; p=p->next) /* try all arcs */
  /external/scapy/scapy/
automaton.py 251 def __init__(self, state_func, automaton, *args, **kargs):
258 self.automaton = automaton
267 return self.func(self.automaton, *self.args, **self.kargs)
354 def __init__(self, name, ioevent, automaton, proto, args, kargs):
360 self.atmt = automaton(*args, **kargs)
382 def __init__(self, name, ioevent, automaton):
385 self.automaton = automaton
387 return _ATMT_supersocket(self.name, self.ioevent, self.automaton, proto, args, kargs
    [all...]
compat.py 22 # TODO remove me once all 'key=cmp_to_key(..)' has been fixed in utils6.py, automaton.py
  /external/autotest/server/cros/packet_generation/
scapy-2.2.0.tar.gz 
  /external/scapy/doc/scapy/
advanced_usage.rst 498 An automaton in Scapy is deterministic. It has different states. A start state and some end and error states. There are transitions from one state to another. Transitions can be transitions on a specific condition, transitions on the reception of a specific packet or transitions on a timeout. When a transition is taken, one or more actions can be run. An action can be bound to many transitions. Parameters can be passed from states to transitions and from transitions to states and actions.
500 From a programmer's point of view, states, transitions and actions are methods from an Automaton subclass. They are decorated to provide meta-information needed in order for the automaton to work.
509 class HelloWorld(Automaton):
531 * ``ATMT.condition`` that indicate a method to be run when the automaton state
544 This simple automaton can be described with the following graph:
555 The ``ATMT.state`` decorator transforms a method into a function that returns an exception. If you raise that exception, the automaton state will be changed. If the change occurs in a transition, actions bound to this transition will be called. The parameters given to the function replacing the method will be kept and finally delivered to the method. The exception has a method action_parameters that can be called before it is raised so that it will store parameters to be delivered to all actions bound to the current transition.
592 class TFTP_read(Automaton):
594 Automaton.parse_args(self, **kargs)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
btm_utils.py 80 matching multiple linear patterns overcomes the automaton's
108 automaton. This also trims off any optional pattern elements(like
  /external/python/cpython2/Lib/lib2to3/
btm_utils.py 80 matching multiple linear patterns overcomes the automaton's
108 automaton. This also trims off any optional pattern elements(like
  /external/python/cpython3/Lib/lib2to3/
btm_utils.py 80 matching multiple linear patterns overcomes the automaton's
107 automaton. This also trims off any optional pattern elements(like
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/
btm_utils.py 80 matching multiple linear patterns overcomes the automaton's
108 automaton. This also trims off any optional pattern elements(like
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/
btm_utils.py 80 matching multiple linear patterns overcomes the automaton's
108 automaton. This also trims off any optional pattern elements(like

Completed in 1835 milliseconds

12 3 4 5 6