Searched defs:mark (Results 1 - 25 of 189) sorted by path

12345678

/external/android-clat/
H A Dclatd.c234 * mark - the socket mark to use for the sending raw socket
236 void open_sockets(struct tun_data *tunnel, uint32_t mark) { argument
247 if (mark != MARK_UNSET && setsockopt(rawsock, SOL_SOCKET, SO_MARK, &mark, sizeof(mark)) < 0) {
248 logmsg(ANDROID_LOG_ERROR, "could not set mark on raw socket: %s", strerror(errno));
459 printf("-m [socket mark]\n");
481 uint32_t mark = MARK_UNSET; local
517 if (mark_str != NULL && !parse_unsigned(mark_str, &mark)) {
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRStringStream.as46 /** tracks how deep mark() calls are nested */
52 * A null is kept @ index 0. Create upon first call to mark().
56 /** Track the last mark() call result value for use in rewind(). */
127 public function mark():int { function
H A DCommonTokenStream.as57 /** Track the last mark() call result value for use in rewind(). */
292 public function mark():int { function
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonTreeNodeStream.as41 * This stream knows how to mark/release for backtracking.
89 /** Track the last mark() call result value for use in rewind(). */
276 public function mark():int { function
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3debugeventlistener.h156 /** The parser is going to look arbitrarily ahead; mark this location,
159 void (*mark) (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker); member in struct:ANTLR3_DEBUG_EVENT_LISTENER_struct
171 * Do not "pop" the marker off the state. mark(i)
196 * also must be rewound. Even the rewind for each mark must be unwound.
H A Dantlr3intstream.h130 * rewind(mark()) should not affect the input cursor.
132 ANTLR3_MARKER (*mark) (struct ANTLR3_INT_STREAM_struct * intStream); member in struct:ANTLR3_INT_STREAM_struct
159 void (*release) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER mark);
171 * backtracking using the mark/rewind mechanism that restores state and
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontreenodestream.c69 static ANTLR3_MARKER mark (pANTLR3_INT_STREAM is);
209 stream->tnstream->istream->mark = mark;
351 stream->tnstream->istream->mark = mark;
656 mark (pANTLR3_INT_STREAM is) function
669 // Return the current mark point
682 /// was in when mark() was called and it returned marker. Also,
685 /// upon mark().
H A Dantlr3cyclicdfa.c81 ANTLR3_MARKER mark; local
86 mark = is->mark(is); /* Store where we are right now */
112 is->rewind(is, mark);
123 is->rewind(is, mark);
155 is->rewind(is, mark);
177 is->rewind(is, mark);
184 is->rewind(is, mark);
H A Dantlr3debughandlers.c66 static void mark (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker);
129 delboy->mark = mark;
696 mark (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker) function
700 sprintf(buffer, "mark\t%d\n", (ANTLR3_UINT32)(marker & 0xFFFFFFFF));
H A Dantlr3inputstream.c47 static void antlr38BitRewind (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
49 static void antlr38BitRelease (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
152 input->istream->mark = antlr38BitMark; // Record the current lex state for later restore
156 input->istream->release = antlr38BitRelease; // Reset marks after mark n
452 /* New mark point
456 /* See if we are revisiting a mark as we can just reuse the vector
490 /** \brief Rewind the lexer input to the state specified by the last produced mark.
503 /** \brief Rewind the lexer input to the state specified by the supplied mark.
511 antlr38BitRewind (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) argument
520 input->istream->release(input->istream, mark);
550 antlr38BitRelease(pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) argument
[all...]
H A Dantlr3tokenstream.c70 static ANTLR3_MARKER mark (pANTLR3_INT_STREAM is);
72 static void release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark);
226 stream->tstream->istream->mark = dbgMark;
312 stream->tstream->istream->mark = mark;
342 ts->istream->mark = dbgMark;
837 mark (pANTLR3_INT_STREAM is) function
843 /// As per mark() but with a call to tell the debugger we are doing this
853 ts->debugger->mark(ts->debugger, is->lastMarker);
859 release (pANTLR3_INT_STREAM is, ANTLR3_MARKER mark) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DANTLRStringStream.java53 /** tracks how deep mark() calls are nested */
59 * A null is kept @ index 0. Create upon first call to mark().
63 /** Track the last mark() call result value for use in rewind(). */
150 public int mark() { method in class:ANTLRStringStream
H A DBufferedTokenStream.java59 /** Track the last mark() call result value for use in rewind(). */
83 public int mark() { method in class:BufferedTokenStream
H A DIntStream.java46 * rewind(mark()) should not affect the input cursor. The Lexer
50 int mark(); method in interface:IntStream
72 * Do not "pop" the marker off the state. mark(i)
84 * argument. So if you're nested 5 levels of mark(), and then release(2)
99 * backtracking using the mark/rewind mechanism that restores state and
H A DLegacyCommonTokenStream.java59 /** Track the last mark() call result value for use in rewind(). */
314 public int mark() { method in class:LegacyCommonTokenStream
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DBlankDebugEventListener.java49 public void mark(int i) {} method in class:BlankDebugEventListener
H A DDebugEventHub.java147 public void mark(int index) { method in class:DebugEventHub
150 listener.mark(index);
H A DDebugEventListener.java107 /** The parser is going to look arbitrarily ahead; mark this location,
110 public void mark(int marker); method in interface:DebugEventListener
122 * Do not "pop" the marker off the state. mark(i)
147 * also must be rewound. Even the rewind for each mark must be unwount.
H A DDebugEventRepeater.java60 public void mark(int i) { listener.mark(i); } method in class:DebugEventRepeater
H A DDebugEventSocketProxy.java164 public void mark(int i) { method in class:DebugEventSocketProxy
165 transmit("mark\t"+i);
H A DDebugTokenStream.java39 /** Track the last mark() call result value for use in rewind(). */
100 public int mark() { method in class:DebugTokenStream
101 lastMarker = input.mark();
102 dbg.mark(lastMarker);
H A DDebugTreeNodeStream.java44 /** Track the last mark() call result value for use in rewind(). */
92 public int mark() { method in class:DebugTreeNodeStream
93 lastMarker = input.mark();
94 dbg.mark(lastMarker);
H A DProfiler.java331 * mark m
356 public void mark(int i) { method in class:Profiler
357 if (dump) System.out.println("mark "+i);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java34 /** A lookahead queue that knows how to mark/release locations
54 /** Track the last mark() call result value for use in rewind(). */
57 /** tracks how deep mark() calls are nested */
129 public int mark() { method in class:LookaheadStream

Completed in 2595 milliseconds

12345678