OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gservices
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Messaging/src/com/android/messaging/util/
Assert.java
42
private static void refreshGservices(final BugleGservices
gservices
) {
45
sShouldCrash =
gservices
.getBoolean(
57
// This is called from FactoryImpl once the
Gservices
class is initialized.
58
public static void initializeGservices (final BugleGservices
gservices
) {
59
gservices
.registerForChanges(new Runnable() {
62
refreshGservices(
gservices
);
65
refreshGservices(
gservices
);
LogUtil.java
44
* Read
Gservices
to see if logging should be enabled.
46
public static void refreshGservices(final BugleGservices
gservices
) {
47
sCaptureDebugLogs =
gservices
.getBoolean(
59
// This is called from FactoryImpl once the
Gservices
class is initialized.
60
public static void initializeGservices (final BugleGservices
gservices
) {
61
gservices
.registerForChanges(new Runnable() {
64
refreshGservices(
gservices
);
67
refreshGservices(
gservices
);
/packages/apps/Messaging/src/com/android/messaging/sms/
BugleApnSettingsLoader.java
48
* 1.
Gservices
setting
339
// Try
Gservices
first
357
* Load from
Gservices
if APN setting is set in
Gservices
362
final BugleGservices
gservices
= BugleGservices.get();
local
363
final String mmsc =
gservices
.getString(BugleGservicesKeys.MMS_MMSC, null);
367
LogUtil.i(LogUtil.BUGLE_TAG, "Loading APNs from
gservices
");
368
final String proxy =
gservices
.getString(BugleGservicesKeys.MMS_PROXY_ADDRESS, null);
369
final int port =
gservices
.getInt(BugleGservicesKeys.MMS_PROXY_PORT, -1);
Completed in 128 milliseconds