HomeSort by relevance Sort by last modified time
    Searched refs:ips (Results 1 - 25 of 25) sorted by null

  /external/valgrind/main/include/
pub_tool_stacktrace.h 38 // for thread 'tid'. Maximum of 'n_ips' addresses put into 'ips';
40 // ips[return_value] onwards is undefined and should not be read.
51 // Hence ips[0 .. return_value-1] should all point to currently
60 /*OUT*/StackTrace ips, UInt n_ips,
73 StackTrace ips, UInt n_ips
77 extern void VG_(pp_StackTrace) ( StackTrace ips, UInt n_ips );
pub_tool_execontext.h 111 ExeContext* VG_(make_ExeContext_from_StackTrace)( Addr* ips, UInt n_ips );
  /external/valgrind/main/coregrind/
pub_core_stacktrace.h 49 // ips[0 .. min(n_ips,return_value)]. If sps and fps are non-NULL,
54 /*OUT*/Addr* ips, UInt n_ips,
m_execontext.c 89 Addr ips[0]; member in struct:_ExeContext
173 VG_(pp_StackTrace)( ec->ips, ec->n_ips );
196 if (e1->ips[i] != e2->ips[i]) return False;
207 if (e1->ips[i] != e2->ips[i]) return False;
241 static UWord calc_hash ( Addr* ips, UInt n_ips, UWord htab_sz )
247 hash ^= ips[i];
279 UWord hash = calc_hash(cur->ips, cur->n_ips, new_size);
296 static ExeContext* record_ExeContext_wrk2 ( Addr* ips, UInt n_ips ); /*fwds*
300 Addr ips[VG_(clo_backtrace_size)]; local
    [all...]
m_stacktrace.c 56 IPs into 'ips'. In order to be thread-safe, we pass in the
58 meaningful. Returns number of IPs put in 'ips'.
70 /*OUT*/Addr* ips, UInt max_n_ips,
89 /* Snaffle IPs from the client's stack into ips[0 .. max_n_ips-1],
117 ips[0] = uregs.xip;
126 ips[0] = uregs.xip;
165 // marker) or a one -- these correspond to recorded IPs of 0 or -1
1124 Addr ips[max_n_ips]; local
    [all...]
m_libcassert.c 223 Addr ips[BACKTRACE_DEPTH]; local
245 ips, BACKTRACE_DEPTH,
251 VG_(pp_StackTrace) (ips, n_ips);
m_errormgr.c 970 StackTrace ips = VG_(get_ExeContext_StackTrace)(p_min->where); local
972 ips[0], /*debugging*/True, 0xFE/*verbosity*/,
1414 StackTrace ips; \/\/ stack trace we are lazily completing. member in struct:__anon16778
    [all...]
  /external/clang/test/SemaCXX/
scope-check.cpp 34 static void *ips[] = { &&lbl1, &&lbl2 }; local
49 static void *ips[] = { &&lbl1, &&lbl2 }; local
66 static void *ips[] = { &&lbl1, &&lbl2 }; local
84 static void *ips[] = { &&lbl1, &&lbl2 }; local
104 static void *ips[] = { &&lbl1, &&lbl2, &&lbl3, &&lbl4 }; local
213 static void *ips[] = { &&l0 }; local
226 static void *ips[] = { &&l0 }; local
242 static void *ips[] = { &&l0 }; local
256 static void *ips[] = { &&l0 }; local
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
SealedObjectTest.java 106 IvParameterSpec ips = new IvParameterSpec(new byte[] { local
110 cipher.init(Cipher.ENCRYPT_MODE, key, ips);
115 cipher.init(Cipher.ENCRYPT_MODE, key, ips);
177 IvParameterSpec ips = new IvParameterSpec(new byte[] { local
181 cipher.init(Cipher.ENCRYPT_MODE, key, ips);
221 IvParameterSpec ips = new IvParameterSpec(new byte[] { local
225 cipher.init(Cipher.ENCRYPT_MODE, key, ips);
230 cipher.init(Cipher.DECRYPT_MODE, key, ips);
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
SealedObjectTest.java 136 IvParameterSpec ips = new IvParameterSpec(new byte[] { 1, 2, 3, 4, 5, local
140 cipher.init(Cipher.ENCRYPT_MODE, key, ips);
171 IvParameterSpec ips = new IvParameterSpec(new byte[] { 1, 2, 3, 4, 5, local
175 cipher.init(Cipher.ENCRYPT_MODE, key, ips);
180 cipher.init(Cipher.DECRYPT_MODE, key, ips);
  /external/chromium/third_party/libjingle/source/talk/base/
socketaddress.cc 176 std::vector<uint32> ips;
182 } else if (GetLocalIPs(ips)) {
183 for (size_t i = 0; i < ips.size(); ++i) {
184 if (ips[i] == ip_) {
237 // We only check hostnames if both IPs are zero. This matches EqualIPs()
337 bool SocketAddress::GetLocalIPs(std::vector<uint32>& ips) {
338 ips.clear();
349 ips.push_back(ip);
352 return !ips.empty();
socketaddress.h 181 static bool GetLocalIPs(std::vector<uint32>& ips);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionary.java 136 final InputPointers ips = composer.getInputPointers(); local
137 final int inputSize = isGesture ? ips.getPointerSize() : composerSize;
140 getTraverseSession(sessionId).getSession(), ips.getXCoordinates(),
141 ips.getYCoordinates(), ips.getTimes(), ips.getPointerIds(), mInputCodePoints,
ExpandableDictionary.java 289 final InputPointers ips = codes.getInputPointers(); local
290 final int[] xCoordinates = ips.getXCoordinates();
291 final int[] yCoordinates = ips.getYCoordinates();
    [all...]
  /external/linux-tools-perf/
perf.h 209 u64 ips[0]; member in struct:ip_callchain
  /external/chromium/third_party/libevent/
evdns.c     [all...]
  /external/valgrind/main/massif/
ms_main.c 933 static Addr ips[MAX_IPS]; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 270 * @param ips The IP address with its subnet mask.
274 private Set intersectIP(Set permitted, Set ips)
277 for (Iterator it = ips.iterator(); it.hasNext();)
349 // difficult, adding always all IPs is not wrong
    [all...]
  /external/v8/tools/
ll_prof.py 650 sample.ips = []
653 sample.ips.append(
925 for ip in sample.ips:
  /external/linux-tools-perf/util/
session.c 256 u64 ip = chain->ips[i];
679 i, sample->callchain->ips[i]);
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c 3174 Addr ips[N_FRAMES], sps[N_FRAMES], fps[N_FRAMES]; local
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
network_library.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 

Completed in 761 milliseconds