/external/opencv3/modules/viz/src/ |
vizimpl.cpp | 180 vtkSmartPointer<vtkRenderWindowInteractor> local = interactor_; local 183 local->Render(); 185 timer_callback_->timer_id = local->CreateRepeatingTimer(std::max(1, time)); 186 local->Start(); 187 local->DestroyTimer(timer_callback_->timer_id);
|
/external/toybox/toys/pending/ |
lsof.c | 193 struct in6_addr local, remote; local 200 &(local.s6_addr32[0]), &local_port, 206 &(local.s6_addr32[0]), &(local.s6_addr32[1]), 207 &(local.s6_addr32[2]), &(local.s6_addr32[3]), 216 inet_ntop(af, &local, local_ip, sizeof(local_ip));
|
/external/wpa_supplicant_8/src/ap/ |
vlan_full.c | 702 struct sockaddr_nl local; local 723 os_memset(&local, 0, sizeof(local)); 724 local.nl_family = AF_NETLINK; 725 local.nl_groups = RTMGRP_LINK; 726 if (bind(priv->s, (struct sockaddr *) &local, sizeof(local)) < 0) {
|
/external/zlib/src/examples/ |
gzlog.c | 241 #define local static macro 306 local unsigned char log_gzhead[] = { 319 local unsigned char log_gzext[] = { 331 local unsigned char log_gzbody[] = { 348 local int log_lock(struct log *log) 372 local void log_touch(struct log *log) 384 local int log_check(struct log *log) 396 local void log_unlock(struct log *log) 410 local int log_head(struct log *log) 437 local int log_mark(struct log *log, int op [all...] |
/libcore/ojluni/src/main/java/java/net/ |
InetAddress.java | 81 * IP address loops around and becomes IP input on the local 92 * <p> <i>Link-local</i> addresses are designed to be used for addressing 96 * <p> <i>Site-local</i> addresses are designed to be used for addressing 118 * the use of a combination of local machine configuration information 121 * services(s) being used is by default the local machine configured 305 * Utility routine to check if the InetAddress is an link local address. 308 * a link local address; or false if address is not a link local unicast address. 316 * Utility routine to check if the InetAddress is a site local address. 319 * a site local address; or false if address is not a site local unicast address 815 String local = Libcore.os.uname().nodename; local [all...] |
/libcore/ojluni/src/main/java/sun/nio/ch/ |
DatagramSocketAdaptor.java | 87 public void bind(SocketAddress local) throws SocketException { 89 if (local == null) 90 local = new InetSocketAddress(0); 91 dc.bind(local); 238 SocketAddress local = dc.localAddress(); 239 if (local == null) 240 local = new InetSocketAddress(0); 241 InetAddress result = ((InetSocketAddress)local).getAddress(); 257 SocketAddress local = dc.getLocalAddress(); local 258 if (local != null) [all...] |
SocketAdaptor.java | 152 public void bind(SocketAddress local) throws IOException { 154 sc.bind(local); 176 InetSocketAddress local = sc.localAddress(); local 177 if (local != null) 178 return Net.getRevealedLocalAddress(local).getAddress(); 198 SocketAddress local = sc.localAddress(); local 199 if (local == null) { 202 return ((InetSocketAddress)local).getPort();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
AddSuppressAnnotation.java | 171 String local = importRewrite.addImport(FQCN_SUPPRESS_LINT); local 176 newAnnotation.setTypeName(ast.newSimpleName(local)); 259 String local = importRewrite.addImport(FQCN_TARGET_API); local 264 newAnnotation.setTypeName(ast.newSimpleName(local));
|
/system/sepolicy/ |
Android.mk | 206 # m4 into a tmp file called file_contexts.local.tmp. 211 # 4. Concatenate file_contexts.local.tmp and file_contexts.device.tmp into 225 file_contexts.local.tmp := $(intermediates)/file_contexts.local.tmp 226 $(file_contexts.local.tmp): $(local_fcfiles_with_nl) 247 $(file_contexts.concat.tmp): $(file_contexts.local.tmp) $(file_contexts.device.sorted.tmp) 265 file_contexts.local.tmp :=
|
/cts/tests/tests/externalservice/src/android/externalservice/cts/ |
ExternalServiceTest.java | 310 Messenger local = new Messenger(handler); local 313 msg.replyTo = local;
|
/dalvik/dexgen/src/com/android/dexgen/dex/code/ |
LocalList.java | 31 * List of local variables. Each local variable entry indicates a 89 * Disposition of a local entry. 92 /** local started (introduced) */ 95 /** local ended without being replaced */ 98 /** local ended because it was directly replaced */ 101 /** local ended because it was moved to a different register */ 105 * local ended because the previous local clobbered this one 111 * local ended because the next local clobbered this on 355 RegisterSpec local = ((LocalStart) insn).getLocal(); local 356 state.startLocal(insn.getAddress(), local); local 358 RegisterSpec local = ((LocalEnd) insn).getLocal(); local 359 state.endLocal(insn.getAddress(), local); local [all...] |
/dalvik/dx/src/com/android/dx/dex/code/ |
LocalList.java | 30 * List of local variables. Each local variable entry indicates a 88 * Disposition of a local entry. 91 /** local started (introduced) */ 94 /** local ended without being replaced */ 97 /** local ended because it was directly replaced */ 100 /** local ended because it was moved to a different register */ 104 * local ended because the previous local clobbered this one 110 * local ended because the next local clobbered this on 354 RegisterSpec local = ((LocalStart) insn).getLocal(); local 355 state.startLocal(insn.getAddress(), local); local [all...] |
OutputFinisher.java | 59 /** whether any instruction has local variable info */ 111 * Returns whether this instance has any local variable information. 113 * @return whether this instance has any local variable information 121 * instruction for local variable information. 212 LocalItem local = spec.getLocalItem(); local 213 CstString name = local.getName(); 214 CstString signature = local.getSignature(); 253 * which updates the position and local info flags.
|
/external/clang/test/CodeGenCXX/ |
mangle-ms.cpp | 271 static int local; local 272 // CHECK-DAG: @"\01?local@?1??extern_c_func@@9@4HA" 273 // X64-DAG: @"\01?local@?1??extern_c_func@@9@4HA"
|
/external/clang/test/SemaTemplate/ |
instantiate-local-class.cpp | 37 // Instantiation of local classes with virtual functions. 282 struct local {}; struct in struct:PR18653::S4 284 f<local>(); 290 union local {}; union in struct:PR18653::S4a 292 f<local>(); 298 enum local { nothing }; enum in struct:PR18653::S5 300 f<local>(); 306 enum class local { nothing }; class in struct:PR18653::S7 308 f<local>(); 316 struct local { }; struct in struct:PR18653::S01 325 union local { }; union in struct:PR18653::S01a 334 enum local { nothing }; enum in struct:PR18653::S02 343 enum class local { nothing }; class in struct:PR18653::S03 [all...] |
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
LocalList.java | 31 * List of local variables. Each local variable entry indicates a 89 * Disposition of a local entry. 92 /** local started (introduced) */ 95 /** local ended without being replaced */ 98 /** local ended because it was directly replaced */ 101 /** local ended because it was moved to a different register */ 105 * local ended because the previous local clobbered this one 111 * local ended because the next local clobbered this on 355 RegisterSpec local = ((LocalStart) insn).getLocal(); local 356 state.startLocal(insn.getAddress(), local); local 358 RegisterSpec local = ((LocalEnd) insn).getLocal(); local 359 state.endLocal(insn.getAddress(), local); local [all...] |
/external/v8/src/runtime/ |
runtime-debug.cc | 480 // 4: Local count 528 // Get scope info and read from it for local variable information. 547 int local = 0; local 552 locals->set(local * 2, scope_info->LocalName(i)); 553 locals->set(local * 2 + 1, frame_inspector.GetExpression(i)); 554 local++; 556 if (local < local_count) { 566 locals->set(local * 2, *name); 570 locals->set(local * 2 + 1, value); 571 local++ [all...] |
/external/webrtc/webrtc/p2p/base/ |
relayport.cc | 202 // TODO: set local preference value for TCP based candidates. 297 const Candidate& local = Candidates()[i]; local 298 if (local.protocol() == address.protocol()) {
|
/external/zlib/src/contrib/untgz/ |
untgz.c | 193 struct tm *local; local 196 local = localtime(t); 198 local->tm_year+1900, local->tm_mon+1, local->tm_mday, 199 local->tm_hour, local->tm_min, local->tm_sec);
|
/frameworks/base/services/core/java/com/android/server/pm/ |
UserRestrictionsUtils.java | 253 @NonNull Bundle local) { 264 local.putBoolean(key, true);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
threading.py | 32 'Timer', 'setprofile', 'settrace', 'local', 'stack_size'] 1204 from thread import _local as local namespace 1206 from _threading_local import local namespace [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
threading.py | 32 'Timer', 'setprofile', 'settrace', 'local', 'stack_size'] 1204 from thread import _local as local namespace 1206 from _threading_local import local namespace [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
threading.py | 32 'Timer', 'setprofile', 'settrace', 'local', 'stack_size'] 1204 from thread import _local as local namespace 1206 from _threading_local import local namespace [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
threading.py | 32 'Timer', 'setprofile', 'settrace', 'local', 'stack_size'] 1204 from thread import _local as local namespace 1206 from _threading_local import local namespace [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
libecoff.h | 163 /* TRUE if this is a local symbol rather than an external one. */ 164 bfd_boolean local; member in struct:ecoff_symbol_struct 168 the value of the local field above. */
|