HomeSort by relevance Sort by last modified time
    Searched full:forward (Results 51 - 75 of 6195) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/iptables/extensions/
libxt_TEE.man 3 must be the target, or you will have to configure the nexthop to forward it
10 To forward all incoming traffic on eth0 to an Network Layer logging box:
libip6t_eui64.man 9 .BR FORWARD
libipt_MIRROR.man 5 .B FORWARD
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypoFix.java 77 IRegion forward = finder.find(start, typo, true /*forward*/, true, true, false); local
78 IRegion backward = finder.find(start, typo, false /*forward*/, true, true, false);
79 if (forward != null && backward != null) {
81 int forwardDelta = forward.getOffset() - start;
84 start = forward.getOffset();
88 } else if (forward != null) {
89 start = forward.getOffset();
  /dalvik/vm/mterp/x86/
OP_GOTO_16.S 2 %verify "forward and backward"
OP_GOTO_32.S 2 %verify "forward, backward, self"
  /external/chromium_org/third_party/WebKit/ManualTests/
caret-in-columns.html 20 getSelection().modify("move", "forward", "documentboundary");
  /external/chromium_org/third_party/icu/source/common/
wintz.h 25 /* Forward declarations for Windows types... */
  /external/chromium_org/tools/android/common/
adb_connection.h 10 // Creates a socket that can forward to a host socket through ADB.
  /external/chromium_org/v8/test/webkit/
codegen-assign-nontemporary-as-rexp.js 37 obj2.forward = (obj['slot'] = victim);
38 return obj2.forward;
52 obj2.forward = (obj.slot = victim);
53 return obj2.forward;
  /external/clang/test/CodeGen/
2008-07-29-override-alias-decl.c 11 forward definition. */
PR15826.c 18 struct aiocb uaiocb; // expected-error {{field has incomplete type}} expected-note {{forward declaration}}
  /external/clang/test/CodeGenObjC/
forward-decl-param.m 3 // <rdar://problem/9123036> crash due to forward-declared struct in
  /external/clang/test/Modules/Inputs/System/usr/include/
module.map 12 // In both directories (compiler support version wins, does not forward)
  /external/clang/test/Sema/
incomplete-call.c 3 struct foo; // expected-note 3 {{forward declaration of 'struct foo'}}
  /external/icu4c/common/
wintz.h 25 /* Forward declarations for Windows types... */
  /external/llvm/test/Assembler/
2002-03-08-NameCollision2.ll 3 ; Another name collision problem. Here the problem was that if a forward
  /external/srtp/googlepatches/
google-8-rdb-crash.patch 5 /* shift the window forward by delta bits*/
  /external/clang/test/SemaObjC/
undef-superclass-1.m 3 @class SUPER, Y; // expected-note 2 {{forward declaration of class here}}
5 @interface INTF :SUPER // expected-error {{attempting to use the forward class 'SUPER' as superclass of 'INTF'}}
16 @interface INTF3 : Y // expected-error {{attempting to use the forward class 'Y' as superclass of 'INTF3'}} \
  /external/openssh/
readconf.h 23 int listen_port; /* Port to forward. */
27 } Forward;
34 int forward_agent; /* Forward authentication agent. */
35 int forward_x11; /* Forward X11 display. */
37 int forward_x11_trusted; /* Trust Forward X11 display. */
100 /* Local TCP/IP forward requests. */
102 Forward *local_forwards;
104 /* Remote TCP/IP forward requests. */
106 Forward *remote_forwards;
153 int parse_forward(Forward *, const char *, int, int)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
p2p-action-udhcp.sh 54 iptables -P FORWARD DROP
56 iptables -A FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT
57 iptables -A FORWARD -i $GIFNAME -o $UPLINK -j ACCEPT
67 iptables -D FORWARD -i $UPLINK -o $GIFNAME -m state --state RELATED,ESTABLISHED -j ACCEPT
68 iptables -D FORWARD -i $GIFNAME -o $UPLINK -j ACCEPT
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 47 template <class T> T&& forward(typename remove_reference<T>::type& t) { function
51 template <class T> T&& forward(typename remove_reference<T>::type&& t) { function
57 return unique_ptr<T>(new T(forward<Args>(args)...));
100 void forward(F f, Args &&...args) { function in namespace:perfect_forwarding
107 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(),
109 forward(F0(), get<A&>(), get<A const&>(), get<A>(), get<const A>(), // expected-note{{in instantiation of function template specialization 'perfect_forwarding::forward<perfect_forwarding::F0, perfect_forwarding::A &, const perfect_forwarding::A &, perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A, const perfect_forwarding::A>' requested here}}
  /libcore/luni/src/main/java/java/security/cert/
PKIXCertPathChecker.java 38 * checking (from trusted CA to target) and <u>may</u> support forward checking
40 * isForwardCheckingSupported} indicates whether forward checking is supported.
66 * @param forward
68 * true} if the certificates are processed in forward direction
76 public abstract void init(boolean forward)
81 * <i>forward checking</i>.
84 * supports forward checking, otherwise {@code false}.
  /external/dnsmasq/src/
forward.c 185 /* don't forward simple names, make exception for NS queries and empty name. */
206 HEADER *header, size_t plen, time_t now, struct frec *forward)
218 forward = NULL;
219 else if (forward || (forward = lookup_frec_by_sender(ntohs(header->id), udpaddr, crc)))
222 domain = forward->sentto->domain;
223 forward->sentto->failed_queries++;
226 forward->forwardall = 1;
229 type = forward->sentto->flags & SERV_TYPE;
230 if (!(start = forward->sentto->next)
465 struct frec *forward; local
    [all...]
  /external/chromium_org/media/base/
seekable_buffer.h 5 // SeekableBuffer to support backward and forward seeking in a buffer for
8 // In order to support backward and forward seeking, this class buffers data in
9 // both backward and forward directions, the current read position can be reset
15 // In the case of reading and seeking forward, the current read position
19 // The eviction will be caused by Read() and Seek() in the forward direction and
23 // how many bytes can be kept in the forward direction, regulated by
25 // forward bytes to exceed |forward_capacity| will have a return value that
87 // current read position is moved forward. If negative, the current read
91 // forward_bytes() when seeking forward and backward_bytes() when seeking
94 // If a forward seeking caused backward_bytes() to exceed backward_capacity()
    [all...]

Completed in 665 milliseconds

1 23 4 5 6 7 8 91011>>