/external/compiler-rt/test/BlocksRuntime/ |
byrefsanity.c | 41 struct byref_id *forwarding; member in struct:byref_id 65 if (ref->forwarding != ref) { 66 printf("forwarding pointer should be %p but is %p\n", ref, ref->forwarding);
|
/external/v8/src/compiler/ |
jump-threading.h | 18 // Compute the forwarding map of basic blocks to their ultimate destination. 25 static void ApplyForwarding(ZoneVector<RpoNumber>& forwarding,
|
/frameworks/base/core/java/android/widget/ |
ForwardingListener.java | 41 /** Timeout before accepting a long-press to start forwarding. */ 50 /** Runnable used to trigger forwarding on long-press. */ 53 /** Whether this listener is currently forwarding touch events. */ 72 * Returns the popup to which this listener is forwarding events. 77 * forwarding. 79 * @return the popup to which this listener is forwarding events 86 final boolean forwarding; 88 forwarding = onTouchForwarded(event) || !onForwardingStopped(); 90 forwarding = onTouchObserved(event) && onForwardingStarted(); 92 if (forwarding) { [all...] |
/external/compiler-rt/lib/BlocksRuntime/ |
Block_private.h | 82 struct Block_byref *forwarding; member in struct:Block_byref 93 struct Block_byref *forwarding; member in struct:Block_byref_header
|
runtime.c | 362 * Closures that aren't copied must still work, so everyone always accesses variables after dereferencing the forwarding ptr. 364 * Otherwise we need to copy it and update the stack forwarding pointer 374 if (src->forwarding->flags & BLOCK_IS_GC) { 377 else if ((src->forwarding->flags & BLOCK_REFCOUNT_MASK) == 0) { 384 copy->forwarding = copy; // patch heap copy to point to itself (skip write-barrier) 385 src->forwarding = copy; // patch stack to point to heap copy 406 else if ((src->forwarding->flags & BLOCK_NEEDS_FREE) == BLOCK_NEEDS_FREE) { 407 latching_incr_int(&src->forwarding->flags); 410 _Block_assign(src->forwarding, (void **)destp); 418 // dereference the forwarding pointer since the compiler isn't doing this anymore (ever? [all...] |
/external/honggfuzz/third_party/android/libBlocksRuntime/ |
Block_private.h | 82 struct Block_byref *forwarding; member in struct:Block_byref 93 struct Block_byref *forwarding; member in struct:Block_byref_header
|
runtime.c | 362 * Closures that aren't copied must still work, so everyone always accesses variables after dereferencing the forwarding ptr. 364 * Otherwise we need to copy it and update the stack forwarding pointer 374 if (src->forwarding->flags & BLOCK_IS_GC) { 377 else if ((src->forwarding->flags & BLOCK_REFCOUNT_MASK) == 0) { 384 copy->forwarding = copy; // patch heap copy to point to itself (skip write-barrier) 385 src->forwarding = copy; // patch stack to point to heap copy 406 else if ((src->forwarding->flags & BLOCK_NEEDS_FREE) == BLOCK_NEEDS_FREE) { 407 latching_incr_int(&src->forwarding->flags); 410 _Block_assign(src->forwarding, (void **)destp); 418 // dereference the forwarding pointer since the compiler isn't doing this anymore (ever? [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingNavigableMapTest.java | 252 // TODO(user): add forwarding-to-ImmutableSortedMap test 274 NavigableMap<String, Integer> forwarding = 277 assertNull(forwarding.lastEntry()); 278 forwarding.put("b", 2); 279 assertEquals(immutableEntry("b", 2), forwarding.lastEntry()); 280 forwarding.put("c", 3); 281 assertEquals(immutableEntry("c", 3), forwarding.lastEntry()); 282 forwarding.put("a", 1); 283 assertEquals(immutableEntry("c", 3), forwarding.lastEntry()); 284 forwarding.remove("c") [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
Forwarding.java | 32 * <p>Example of removing yourself from the history stack after forwarding to 48 <td class="LinkColumn">src/com.example.android.apis/app/Forwarding.java</td> 52 <td class="LinkColumn">/res/any/layout/forwarding.xml</td> 53 <td class="DescrColumn">Defines contents of the Forwarding screen</td> 57 public class Forwarding extends Activity 64 setContentView(R.layout.forwarding); 79 intent.setClass(Forwarding.this, ForwardTarget.class);
|
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/ |
ForwardingListener.java | 45 /** Timeout before accepting a long-press to start forwarding. */ 54 /** Runnable used to trigger forwarding on long-press. */ 57 /** Whether this listener is currently forwarding touch events. */ 81 * Returns the popup to which this listener is forwarding events. 86 * forwarding. 88 * @return the popup to which this listener is forwarding events 95 final boolean forwarding; 97 forwarding = onTouchForwarded(event) || !onForwardingStopped(); 99 forwarding = onTouchObserved(event) && onForwardingStarted(); 101 if (forwarding) { [all...] |
/external/libnl/python/netlink/route/links/ |
inet.py | 78 def forwarding(self): member in class:InetLink 81 @forwarding.setter 82 def forwarding(self, value): member in class:InetLink
|
/prebuilts/go/darwin-x86/misc/cgo/testsanitizers/src/ |
tsan12.go | 10 // syscall.runtime_AfterForkInChild corrupted TSAN's signal forwarding table
|
/prebuilts/go/linux-x86/misc/cgo/testsanitizers/src/ |
tsan12.go | 10 // syscall.runtime_AfterForkInChild corrupted TSAN's signal forwarding table
|
/external/v8/src/js/ |
promise.js | 33 // false debugEvent so that forwarding the rejection through all does not 97 // false debugEvent so that forwarding the rejection through race does not
|
/device/generic/goldfish/wifi/ |
init.wifi.sh | 64 execns ${NAMESPACE} sysctl -wq net.ipv6.conf.all.forwarding=1
|
/external/honggfuzz/examples/bind/ |
named.conf | 58 allow-update-forwarding {
|
/external/iproute2/ip/ |
ifcfg | 8 for dir in $sbase/*/forwarding; do 47 echo "Forwarding is ON or its state is unknown ($fwd). OK, No RDISC." 1>&2
|
/external/v8/tools/foozzie/ |
v8_mock.js | 67 // Note, for now we just use noop forwarding proxies, because they already
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/ |
proxy.go | 59 // a URL with that scheme and a forwarding Dialer. Registered schemes are used
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/ |
proxy.go | 59 // a URL with that scheme and a forwarding Dialer. Registered schemes are used
|
/external/libnl/lib/route/link/ |
inet.c | 35 * printf("forwarding is %s\n", value ? "enabled" : "disabled"); 144 __ADD(IPV4_DEVCONF_FORWARDING, forwarding)
|
inet6.c | 225 __ADD(DEVCONF_FORWARDING, forwarding)
|
/prebuilts/go/darwin-x86/src/syscall/ |
zsysctl_openbsd.go | 149 {"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}}, 223 {"net.inet6.ip6.forwarding", []_C_int{4, 24, 17, 1}},
|
/prebuilts/go/linux-x86/src/syscall/ |
zsysctl_openbsd.go | 149 {"net.inet.ip.forwarding", []_C_int{4, 2, 0, 1}}, 223 {"net.inet6.ip6.forwarding", []_C_int{4, 24, 17, 1}},
|
/prebuilts/go/darwin-x86/misc/cgo/testcarchive/ |
carchive_test.go | 254 // Test SIGPIPE forwarding 595 // For simplicity, reuse the signal forwarding test.
|