Lines Matching refs:address

36  * user address.
52 new String[] {"processID", "symbol", "address"})
92 * symbol lookup, and user address converted in probe context as a
100 * looking up the symbol associated with the given user address
101 * @param addressValue symbol address
134 * Gets the result of the address lookup in the same form returned
135 * by {@link Consumer#lookupUserFunction(int pid, long address)}.
137 * @return non-null address lookup in the format defined by the
157 * Gets the symbol's user address.
159 * @return the symbol's user address
168 * Gets the composite value of the symbol's process ID and address.
175 * address
187 * the same process ID and the same address.
191 * process ID and the same address
216 * by the combined value of process ID first and address second.
223 * address is less than, equal to, or greater than the given
224 * record's combined process ID and address
236 * java.lang.String}), followed by address ({@code long})
281 * The composite value of a symbol's process ID and user address.
296 new String[] {"processID", "address"})
324 private final long address;
328 * symbol address.
333 * @param addressValue symbol address
341 address = addressValue;
355 * address.
366 * Gets the symbol's user address.
368 * @return the symbol's user address
373 return address;
381 * ID and the same address.
385 * the same process ID and the same address
393 return ((processID == v.processID) && (address == v.address));
408 hash = 37 * hash + (int)(address ^ (address >>> 32));
415 * address second. The comparison treats addresses as unsigned
421 * address is less than, equal to, or greater than the given
422 * value's combined process ID and address
431 cmp = ProbeData.compareUnsigned(address, v.address);
469 buf.append(", address = ");
470 buf.append(address);