OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:PROBE
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/net/metrics/
IpReachabilityEvent.java
27
* An event recorded when IpReachabilityMonitor sends a neighbor
probe
or receives
28
* a neighbor
probe
result.
35
/** A
probe
forced by IpReachabilityMonitor. */
36
public static final int
PROBE
= 1 << 8;
37
/** Neighbor unreachable after a forced
probe
. */
39
/** Neighbor unreachable after a forced
probe
, IP provisioning is also lost. */
50
// byte 2: type of event:
PROBE
, NUD_FAILED, PROVISIONING_LOST
51
// byte 3: when byte 2 ==
PROBE
, errno code from RTNetlink or IpReachabilityMonitor.
119
new String[]{"
PROBE
", "PROVISIONING_", "NUD_"});
/libcore/luni/src/main/java/java/util/concurrent/atomic/
Striped64.java
53
* The Thread
probe
fields maintained via ThreadLocalRandom serve
160
* Returns the
probe
value for the current thread.
164
return U.getInt(Thread.currentThread(),
PROBE
);
168
* Pseudo-randomly advances and records the given
probe
value for the
172
static final int advanceProbe(int
probe
) {
173
probe
^=
probe
<< 13; // xorshift
174
probe
^=
probe
>>> 17;
175
probe
^= probe << 5
176
U.putInt(Thread.currentThread(), PROBE,
probe
);
local
[
all
...]
/libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java
62
* field to also use it as a "
probe
" -- a self-adjusting thread
130
int
probe
= (p == 0) ? 1 : p; // skip 0
local
134
U.putInt(t,
PROBE
,
probe
);
143
if (U.getInt(Thread.currentThread(),
PROBE
) == 0)
910
U.putInt(Thread.currentThread(), PROBE,
probe
);
local
[
all
...]
/prebuilts/sdk/system_current/
android.jar
Completed in 169 milliseconds