OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PROBE
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/net/metrics/
IpReachabilityEvent.java
26
* An event recorded when IpReachabilityMonitor sends a neighbor
probe
or receives
27
* a neighbor
probe
result.
33
/** A
probe
forced by IpReachabilityMonitor. */
34
public static final int
PROBE
= 1 << 8;
35
/** Neighbor unreachable after a forced
probe
. */
37
/** Neighbor unreachable after a forced
probe
, IP provisioning is also lost. */
47
// byte 2: type of event:
PROBE
, NUD_FAILED, PROVISIONING_LOST
48
// byte 3: when byte 2 ==
PROBE
, errno code from RTNetlink or IpReachabilityMonitor.
102
new String[]{"
PROBE
", "PROVISIONING_", "NUD_"});
/libcore/ojluni/src/main/java/java/util/concurrent/atomic/
Striped64.java
82
* The Thread
probe
fields maintained via ThreadLocalRandom serve
189
* Returns the
probe
value for the current thread.
193
return U.getInt(Thread.currentThread(),
PROBE
);
197
* Pseudo-randomly advances and records the given
probe
value for the
201
static final int advanceProbe(int
probe
) {
202
probe
^=
probe
<< 13; // xorshift
203
probe
^=
probe
>>> 17;
204
probe
^= probe << 5
205
U.putInt(Thread.currentThread(), PROBE,
probe
);
local
[
all
...]
/libcore/ojluni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java
91
* field to also use it as a "
probe
" -- a self-adjusting thread
159
int
probe
= (p == 0) ? 1 : p; // skip 0
local
163
U.putInt(t,
PROBE
,
probe
);
172
if (U.getInt(Thread.currentThread(),
PROBE
) == 0)
939
U.putInt(Thread.currentThread(), PROBE,
probe
);
local
[
all
...]
Completed in 301 milliseconds