OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:UiccController
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneFactory.java
31
import com.android.internal.telephony.uicc.
UiccController
;
140
// Instantiate
UiccController
so that all other classes can just call getInstance()
141
UiccController
.make(context, sCommandsInterface);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccController.java
38
*
UiccController
is created with the call to make() function.
39
*
UiccController
is a singleton and make() must only be called once
42
* Once created
UiccController
registers with RIL for "on" and "unsol_sim_status_changed"
43
* notifications. When such notification arrives
UiccController
will call
49
*
UiccController
72
public class
UiccController
extends Handler {
74
private static final String LOG_TAG = "
UiccController
";
84
private static
UiccController
mInstance;
92
public static
UiccController
make(Context c, CommandsInterface ci) {
95
throw new RuntimeException("
UiccController
.make() should only be called once")
[
all
...]
Completed in 24 milliseconds