OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ApnContext
(Results
1 - 6
of
6
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java
147
private
ApnContext
mWaitCleanUpApnContext = null;
164
for (
ApnContext
apnContext
: mApnContexts.values()) {
167
filter.addAction(INTENT_RECONNECT_ALARM + '.' +
apnContext
.getApnType());
168
filter.addAction(INTENT_RESTART_TRYSETUP_ALARM + '.' +
apnContext
.getApnType());
257
ApnContext
apnContext
= mApnContexts.get(name);
258
log.log("DcTracker.incApnRefCount on " + name + " found " +
apnContext
);
259
if (
apnContext
!= null) {
260
apnContext
.incRefCount(log)
[
all
...]
DcController.java
245
ArrayList<
ApnContext
> apnsToCleanup = new ArrayList<
ApnContext
>();
262
// Determine if the connection/
apnContext
should be cleaned up
325
for (
ApnContext
apnContext
: dc.mApnContexts) {
328
apnContext
.getApnType());
411
for (
ApnContext
apnContext
: apnsToCleanup) {
412
mDct.sendCleanUpConnection(true,
apnContext
);
DcTrackerBase.java
261
/** Phone.APN_TYPE_* ===>
ApnContext
*/
262
protected final ConcurrentHashMap<String,
ApnContext
> mApnContexts =
263
new ConcurrentHashMap<String,
ApnContext
>();
267
protected final PriorityQueue<
ApnContext
>mPrioritySortedApnContexts =
268
new PriorityQueue<
ApnContext
>(5,
269
new Comparator<
ApnContext
>() {
270
public int compare(
ApnContext
c1,
ApnContext
c2) {
523
ApnContext
apnContext
= mApnContexts.get(apnType)
[
all
...]
DcAsyncChannel.java
363
* @param
apnContext
is the Access Point Name to bring up a connection to
370
public void bringUp(
ApnContext
apnContext
, int initialMaxRetry, int profileId,
373
log("bringUp:
apnContext
=" +
apnContext
+ " initialMaxRetry=" + initialMaxRetry
377
new ConnectionParams(
apnContext
, initialMaxRetry, profileId,
387
public void tearDown(
ApnContext
apnContext
, String reason, Message onCompletedMsg) {
389
log("tearDown:
apnContext
=" +
apnContext
[
all
...]
DataConnection.java
124
ApnContext
mApnContext;
131
ConnectionParams(
ApnContext
apnContext
, int initialMaxRetry, int profileId,
133
mApnContext =
apnContext
;
155
ApnContext
mApnContext;
159
DisconnectParams(
ApnContext
apnContext
, String reason, Message onCompletedMsg) {
160
mApnContext =
apnContext
;
193
List<
ApnContext
> mApnContexts = null;
451
mApnContexts = new ArrayList<
ApnContext
>();
[
all
...]
ApnContext.java
42
public class
ApnContext
{
96
public
ApnContext
(Context context, String apnType, String logTag, NetworkConfig config,
305
log.log("
ApnContext
.incRefCount has duplicate add - " + mRefCount);
308
log.log("
ApnContext
.incRefCount - " + mRefCount);
321
log.log("
ApnContext
.decRefCount - " + mRefCount);
323
log.log("
ApnContext
.decRefCount didn't find log - " + mRefCount);
326
log.log("
ApnContext
.decRefCount - 1");
337
requestLog("
ApnContext
.resetErrorCodeRetries");
338
if (DBG) log("
ApnContext
.resetErrorCodeRetries");
388
String str = "
ApnContext
.restartOnError(" + errorCode + ") found " + retriesLeft
[
all
...]
Completed in 1316 milliseconds