OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sContext
(Results
1 - 6
of
6
) sorted by null
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
RenderScriptSingleton.java
34
private static Context
sContext
;
47
if (context.equals(
sContext
)) {
49
} else if (
sContext
!= null) {
52
", before clearing previous "+
sContext
);
58
sContext
= context;
69
if (
sContext
!= null) {
75
sContext
= null;
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/jni/
JniInterface.java
45
private static Activity
sContext
= null;
156
sContext
= context;
182
SharedPreferences prefs =
sContext
.getPreferences(Activity.MODE_PRIVATE);
241
AlertDialog.Builder pinPrompt = new AlertDialog.Builder(
sContext
);
242
pinPrompt.setTitle(
sContext
.getString(R.string.title_authenticate));
243
pinPrompt.setMessage(
sContext
.getString(R.string.pin_message_android));
246
final View pinEntry =
sContext
.getLayoutInflater().inflate(R.layout.pin_dialog, null);
266
String message =
sContext
.getString(R.string.error_network_error);
267
Toast.makeText(
sContext
, message, Toast.LENGTH_LONG).show();
321
sContext
.getPreferences(Activity.MODE_PRIVATE).edit()
[
all
...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/app/
ChildProcessService.java
62
private static AtomicReference<Context>
sContext
= new AtomicReference<Context>(null);
117
return
sContext
.get();
123
if (
sContext
.get() != null) {
126
sContext
.set(this);
202
ContentMain.initApplicationContext(
sContext
.get().getApplicationContext());
203
nativeInitChildProcess(
sContext
.get().getApplicationContext(),
/external/chromium_org/third_party/sqlite/src/src/
delete.c
237
AuthContext
sContext
; /* Authorization context */
248
memset(&
sContext
, 0, sizeof(
sContext
));
308
sqlite3AuthContextPush(pParse, &
sContext
, pTab->zName);
444
sqlite3AuthContextPop(&
sContext
);
update.c
111
AuthContext
sContext
; /* The authorization context */
132
memset(&
sContext
, 0, sizeof(
sContext
));
291
sqlite3AuthContextPush(pParse, &
sContext
, pTab->zName);
555
sqlite3AuthContextPop(&
sContext
);
vdbe.c
[
all
...]
Completed in 378 milliseconds