/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/ |
contains_impl.hpp | 23 #include <boost/mpl/aux_/config/forwarding.hpp>
|
numeric_cast_utils.hpp | 19 #include <boost/mpl/aux_/config/forwarding.hpp>
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/ |
same_as.hpp | 19 #include <boost/mpl/aux_/config/forwarding.hpp>
|
/packages/apps/Email/src/com/android/mail/browse/ |
EmailConversationProvider.java | 25 // The authority of our conversation provider (a forwarding provider)
|
/packages/apps/UnifiedEmail/unified_src/com/android/mail/browse/ |
UnifiedConversationProvider.java | 25 // The authority of our conversation provider (a forwarding provider)
|
/packages/apps/UnifiedEmail/unified_src/com/android/mail/providers/ |
UnifiedAccountCacheProvider.java | 24 // The authority of our conversation provider (a forwarding provider)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_46.txt | 23 Testing email forwarding with Groupwise 1.2.2010
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/test/data/ |
msg_46.txt | 23 Testing email forwarding with Groupwise 1.2.2010
|
/external/llvm/test/Transforms/GVN/ |
rle.ll | 38 ;; Store -> Load and Load -> Load forwarding where src and dst are different 42 ;; i32 -> f32 forwarding. 55 ;; i32* -> float forwarding. 68 ;; float -> i32* forwarding. 81 ;; i32 -> f32 load forwarding. 102 ;; i32 -> i8 forwarding 115 ;; i64 -> float forwarding 128 ;; i64 -> i8* (32-bit) forwarding 141 ; memset -> i16 forwarding. 154 ; memset -> float forwarding [all...] |
/frameworks/base/core/java/android/os/ |
INetworkManagementService.aidl | 135 * Returns true if IP forwarding is enabled 140 * Enables/Disables IP Forwarding 352 * iface must already be set for marked forwarding by {@link setMarkedForwarding} 370 * Removes marked forwarding for an interface 385 * Route all traffic in {@code route} to {@code iface} setup for marked forwarding
|
/external/openssh/ |
auth-options.c | 113 cp = "no-port-forwarding"; 115 auth_debug_add("Port forwarding disabled."); 120 cp = "no-agent-forwarding"; 122 auth_debug_add("Agent forwarding disabled."); 127 cp = "no-X11-forwarding"; 129 auth_debug_add("X11 forwarding disabled."); 461 if (strcmp(name, "permit-X11-forwarding") == 0) { 465 "permit-agent-forwarding") == 0) { 469 "permit-port-forwarding") == 0) {
|
ssh1.h | 91 #define SSH_PROTOFLAG_SCREEN_NUMBER 1 /* X11 forwarding includes screen */ 92 #define SSH_PROTOFLAG_HOST_IN_FWD_OPEN 2 /* forwarding opens contain host */
|
sshd_config.5 | 100 forwarding is permitted. 103 Note that disabling agent forwarding does not improve security 126 Specifies whether TCP forwarding is permitted. 129 Note that disabling TCP forwarding does not improve security unless 419 to allow the client to select the address to which the forwarding is bound. 776 Specifies the destinations to which TCP port forwarding is permitted. 777 The forwarding specification must be one of the following forms: 800 can be used to remove all restrictions and permit any forwarding requests. 801 By default all port forwarding requests are permitted. 834 device forwarding is allowed [all...] |
/external/dropbear/ |
CHANGES | 286 - IPv6 support added for client, server, and forwarding 297 - Clean up agent forwarding socket files correctly, patch from Gerrit Pape. 321 - Fixed a TCP forwarding (client-local, -L style) bug which caused the whole 334 - Fixed a bug in agent-forwarding cleanup handler - would segfault 335 (dereferencing a null pointer) if agent forwarding had failed. 340 - Fixed local port forwarding code so that the "-j" option will make forwarding 370 - Remote TCP forwarding (-R) style implemented 372 - Local and remote TCP forwarding can each be disabled at runtime (-k and -j 478 - X11 forwarding fixed for OSX, path for xauth changed to /usr/X11R6/bin/xaut [all...] |
/external/llvm/test/Transforms/ObjCARC/ |
escape.ll | 22 %byref.forwarding = getelementptr inbounds %struct.__block_byref_weakLogNTimes* %weakLogNTimes, i64 0, i32 1 23 store %struct.__block_byref_weakLogNTimes* %weakLogNTimes, %struct.__block_byref_weakLogNTimes** %byref.forwarding, align 8 50 %tmp8 = load %struct.__block_byref_weakLogNTimes** %byref.forwarding, align 8 77 %byref.forwarding = getelementptr inbounds %struct.__block_byref_weakLogNTimes* %weakLogNTimes, i64 0, i32 1 78 store %struct.__block_byref_weakLogNTimes* %weakLogNTimes, %struct.__block_byref_weakLogNTimes** %byref.forwarding, align 8 105 %tmp8 = load %struct.__block_byref_weakLogNTimes** %byref.forwarding, align 8
|
/external/clang/docs/ |
Block-ABI-Apple.rst | 356 struct Block_byref *forwarding; 373 struct _block_byref_foo *forwarding; 384 a. The ``forwarding`` pointer is set to the beginning of its enclosing 404 structures ``forwarding`` pointer. For example: 417 struct _block_byref_i *forwarding; 423 i.forwarding->captured_i = 11; 441 struct _block_byref_voidBlock *forwarding; 462 struct _block_byref_voidBlock voidBlock = {( .forwarding=&voidBlock, .flags=(1<<25), .size=sizeof(struct _block_byref_voidBlock *), 466 voidBlock.forwarding->captured_voidBlock = blockB; 490 struct _block_byref_voidBlock *forwarding; [all...] |
/external/compiler-rt/BlocksRuntime/ |
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/ganymed-ssh2/examples/ |
PortForwarding.java | 51 /* Example Port Forwarding: -L 8080:www.ethz.ch:80 (OpenSSH notation) 70 /* Example Port Forwarding: -R 127.0.0.1:8080:www.ganymed.ethz.ch:80 (OpenSSH notation)
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingObject.java | 36 * are implemented only in subclasses. Therefore, forwarding {@code equals} 37 * would break symmetry, as the forwarding object might consider itself equal to
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
mroute.h | 23 #define MRT_ADD_MFC (MRT_BASE+4) /* Add a multicast forwarding entry */ 24 #define MRT_DEL_MFC (MRT_BASE+5) /* Delete a multicast forwarding entry */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
mroute.h | 23 #define MRT_ADD_MFC (MRT_BASE+4) /* Add a multicast forwarding entry */ 24 #define MRT_DEL_MFC (MRT_BASE+5) /* Delete a multicast forwarding entry */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
mroute.h | 23 #define MRT_ADD_MFC (MRT_BASE+4) /* Add a multicast forwarding entry */ 24 #define MRT_DEL_MFC (MRT_BASE+5) /* Delete a multicast forwarding entry */
|
/frameworks/base/core/java/android/widget/ |
ListPopupWindow.java | 827 * Filter key down events. By forwarding key down events to this function, [all...] |
/external/chromium/chrome/browser/ui/cocoa/location_bar/ |
autocomplete_text_field_editor.h | 15 // events for forwarding to the core Omnibox code. It also undoes
|
/external/chromium_org/build/android/ |
adb_reverse_forwarder.py | 7 """Command line tool for forwarding ports from a device to the host.
|