OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:synchronized
(Results
1 - 25
of
6325
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/packages/apps/Camera2/src_pd/com/android/camera/stats/
SessionStatsCollector.java
18
public
synchronized
void previewActive(boolean active) {
21
public
synchronized
void faceScanActive(boolean active) {
24
public
synchronized
void autofocusActive(boolean active) {
27
public
synchronized
void autofocusManualTrigger() {
30
public
synchronized
void autofocusResult(boolean success) {
33
public
synchronized
void autofocusMoving(boolean moving) {
36
public
synchronized
void sessionActive(boolean active) {
/art/test/088-monitor-verification/src/
Main.java
69
* Recursive
synchronized
method.
71
synchronized
void recursiveSync(int iter) {
85
synchronized
(this) {
86
synchronized
(Main.class) {
87
synchronized
(new Object()) {
88
synchronized
(Class.class) {
104
synchronized
(Thread.class) {}
112
synchronized
(this) { // 1
113
synchronized
(this) { // 2
114
synchronized
(this) { //
[
all
...]
/art/test/088-monitor-verification/
info.txt
1
Try different arrangements of "
synchronized
" to exercise the structured
/packages/providers/ContactsProvider/tests/assets/testSynced/
readme.txt
1
The contacts in this example were created on a device that was
synchronized
to the server.
2
Contacts up to ID=6 were created and
synchronized
. The synch was then disabled and the others
/art/test/426-monitor/
expected.txt
3
In
synchronized
block
/external/clang/test/SemaObjC/
synchronized.m
8
@
synchronized
(self) {
18
@
synchronized
(b) { // expected-error {{@
synchronized
requires an Objective-C object type ('struct x' invalid)}}
21
@
synchronized
(42) { // expected-error {{@
synchronized
requires an Objective-C object type ('int' invalid)}}
/dalvik/dx/tests/062-dex-synch-method/
Blort.java
19
public
synchronized
void testInstance1() {
23
public
synchronized
void testInstance2(Object x) {
27
public
synchronized
int testInstance3(int x, int y, int z) {
35
public
synchronized
long testInstance4(long x) {
43
public
synchronized
void testInstance5() {
47
public static
synchronized
void testStatic1() {
51
public static
synchronized
void testStatic2(Object x) {
55
public static
synchronized
int testStatic3(int x, int y, int z) {
63
public static
synchronized
long testStatic4(long x) {
71
public static
synchronized
void testStatic5()
[
all
...]
/external/clang/test/SemaObjCXX/
synchronized.mm
15
@
synchronized
(a) {
18
@
synchronized
(b) { // expected-error {{@
synchronized
requires an Objective-C object type ('struct y' invalid)}}
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
BaseWifiLogger.java
18
public
synchronized
void startLogging(boolean verboseEnabled) {
25
public
synchronized
void startPacketLog() { }
27
public
synchronized
void stopPacketLog() { }
29
public
synchronized
void stopLogging() { }
31
synchronized
void reportConnectionFailure() {}
33
public
synchronized
void captureBugReportData(int reason) { }
35
public
synchronized
void captureAlertData(int errorCode, byte[] alertData) { }
37
public
synchronized
void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
43
protected
synchronized
void dump(PrintWriter pw) {
/external/guava/guava/src/com/google/common/collect/
Synchronized.java
47
*
Synchronized
collection views. The returned
synchronized
collection views are
60
final class
Synchronized
{
61
private
Synchronized
() {}
79
synchronized
(mutex) {
91
synchronized
(mutex) {
119
synchronized
(mutex) {
126
synchronized
(mutex) {
133
synchronized
(mutex) {
140
synchronized
(mutex)
[
all
...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
SynchronizedSummaryStatistics.java
57
public
synchronized
StatisticalSummary getSummary() {
65
public
synchronized
void addValue(double value) {
73
public
synchronized
long getN() {
81
public
synchronized
double getSum() {
89
public
synchronized
double getSumsq() {
97
public
synchronized
double getMean() {
105
public
synchronized
double getStandardDeviation() {
113
public
synchronized
double getVariance() {
121
public
synchronized
double getMax() {
129
public
synchronized
double getMin()
[
all
...]
SynchronizedMultivariateSummaryStatistics.java
55
public
synchronized
void addValue(double[] value)
64
public
synchronized
int getDimension() {
72
public
synchronized
long getN() {
80
public
synchronized
double[] getSum() {
88
public
synchronized
double[] getSumSq() {
96
public
synchronized
double[] getSumLog() {
104
public
synchronized
double[] getMean() {
112
public
synchronized
double[] getStandardDeviation() {
120
public
synchronized
RealMatrix getCovariance() {
128
public
synchronized
double[] getMax()
[
all
...]
/external/robolectric/v1/src/main/java/android/webkit/
TestWebSettings.java
63
public
synchronized
boolean getBlockNetworkImage() {
68
public
synchronized
void setBlockNetworkImage(boolean flag) {
73
public
synchronized
boolean getBlockNetworkLoads() {
78
public
synchronized
void setBlockNetworkLoads(boolean flag) {
93
public
synchronized
boolean getDatabaseEnabled() {
98
public
synchronized
void setDatabaseEnabled(boolean flag) {
103
public
synchronized
boolean getDomStorageEnabled() {
108
public
synchronized
void setDomStorageEnabled(boolean flag) {
113
public
synchronized
boolean getJavaScriptEnabled() {
118
public
synchronized
void setJavaScriptEnabled(boolean flag)
[
all
...]
/art/test/426-monitor/src/
Main.java
26
public static
synchronized
void $opt$StaticSynchronizedMethod() {
30
public
synchronized
void $opt$InstanceSynchronizedMethod() {
36
synchronized
(o) {
37
System.out.println("In
synchronized
block");
41
public
synchronized
void $opt$DoubleInstanceSynchronized() {
42
synchronized
(this) {
47
public
synchronized
static void $opt$DoubleStaticSynchronized() {
48
synchronized
(Main.class) {
/external/clang/test/Rewriter/
objc-synchronized-1.m
11
@
synchronized
(SYNCH_EXPR()) {
16
@
synchronized
([sem self]) {
rewrite-modern-synchronized.m
18
@
synchronized
(SYNCH_EXPR()) {
23
@
synchronized
([sem self]) {
31
@
synchronized
(foo) {
43
@
synchronized
(self) {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Synchronized.java
41
*
Synchronized
collection views. The returned
synchronized
collection views are
54
final class
Synchronized
{
55
private
Synchronized
() {}
73
synchronized
(mutex) {
103
synchronized
(mutex) {
110
synchronized
(mutex) {
117
synchronized
(mutex) {
124
synchronized
(mutex) {
131
synchronized
(mutex)
[
all
...]
/external/replicaisland/src/com/replica/replicaisland/
EventRecorder.java
37
synchronized
void setLastDeathPosition(Vector2 position) {
41
synchronized
Vector2 getLastDeathPosition() {
45
synchronized
void setLastEnding(int ending) {
49
synchronized
int getLastEnding() {
53
synchronized
void incrementEventCounter(int event) {
63
synchronized
int getRobotsDestroyed() {
67
synchronized
int getPearlsCollected() {
71
synchronized
int getPearlsTotal() {
/cts/tests/app/app/src/android/app/stubs/
IntentServiceStub.java
42
public
synchronized
static void reset() {
56
synchronized
(IntentServiceStub.class) {
68
synchronized
(IntentServiceStub.class) {
83
synchronized
(IntentServiceStub.class) {
91
synchronized
(IntentServiceStub.class) {
99
synchronized
(IntentServiceStub.class) {
107
synchronized
(IntentService.class) {
113
public
synchronized
static int getOnHandleIntentCalledCount() {
117
public
synchronized
static boolean isOnBindCalled() {
121
public
synchronized
static boolean isOnCreateCalled()
[
all
...]
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/v1/
CameraAutoFocusControls.java
32
public
synchronized
void setAfMode(int afMode) {
36
public
synchronized
void enableAfControl(boolean enable) {
40
public
synchronized
boolean isAfControlEnabled() {
44
public
synchronized
int getAfMode() {
48
public
synchronized
void setPendingTriggerStart() {
52
public
synchronized
void setPendingTriggerCancel() {
56
public
synchronized
Integer consumePendingTrigger() {
/frameworks/base/core/java/android/os/
RegistrantList.java
28
public
synchronized
void
34
public
synchronized
void
42
public
synchronized
void
49
public
synchronized
void
61
public
synchronized
int
67
public
synchronized
Object
73
private
synchronized
void
82
public /*
synchronized
*/ void
88
public /*
synchronized
*/ void
94
public /*
synchronized
*/ voi
[
all
...]
/development/samples/browseable/SynchronizedNotifications/
_index.jd
8
This sample creates simple or
synchronized
notifications on a
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
X9ECParametersHolder.java
7
public
synchronized
X9ECParameters getParameters()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/targets/
Target12.java
17
* This target uses
synchronized
blocks which compile to try/catch statements.
27
synchronized
(this) {
34
synchronized
(lock1) {
37
synchronized
(lock2) {
/art/test/121-modifiers/classes/
NonInf.class
Completed in 1430 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>