HomeSort by relevance Sort by last modified time
    Searched refs:sim (Results 1 - 25 of 54) sorted by null

1 2 3

  /build/target/product/
sim.mk 4 PRODUCT_NAME := sim
5 PRODUCT_DEVICE := sim
AndroidProducts.mk 40 $(LOCAL_DIR)/sim.mk
  /external/qemu/telephony/
sim_card.h 20 extern void asimcard_destroy( ASimCard sim );
31 extern ASimStatus asimcard_get_status( ASimCard sim );
32 extern void asimcard_set_status( ASimCard sim, ASimStatus status );
34 extern const char* asimcard_get_pin( ASimCard sim );
35 extern const char* asimcard_get_puk( ASimCard sim );
36 extern void asimcard_set_pin( ASimCard sim, const char* pin );
37 extern void asimcard_set_puk( ASimCard sim, const char* puk );
39 extern int asimcard_check_pin( ASimCard sim, const char* pin );
40 extern int asimcard_check_puk( ASimCard sim, const char* puk, const char* pin );
42 /* Restricted SIM Access command, as defined by 8.18 of 3GPP 27.007 *
    [all...]
sim_card.c 62 asimcard_get_status( ASimCard sim )
64 return sim->status;
68 asimcard_set_status( ASimCard sim, ASimStatus status )
70 sim->status = status;
74 asimcard_get_pin( ASimCard sim )
76 return sim->pin;
80 asimcard_get_puk( ASimCard sim )
82 return sim->puk;
86 asimcard_set_pin( ASimCard sim, const char* pin )
88 strncpy( sim->pin, pin, A_SIM_PIN_SIZE )
    [all...]
android_modem.c 205 /* SIM card */
206 ASimCard sim; member in struct:AModemRec_
360 modem->sim = asimcard_create();
374 asimcard_destroy( modem->sim );
375 modem->sim = NULL;
404 return modem->sim;
765 switch (asimcard_get_status(modem->sim)) {
769 case A_SIM_STATUS_PIN: answer = "+CPIN: SIM PIN"; break;
770 case A_SIM_STATUS_PUK: answer = "+CPIN: SIM PUK"; break;
866 return asimcard_io( modem->sim, cmd )
    [all...]
  /sdk/emulator/tools/
Android.mk 21 ifneq ($(TARGET_PRODUCT),sim)
35 endif # TARGET_PRODUCT != sim
  /system/extras/tests/framebuffer/
Android.mk 42 endif # sim
  /frameworks/base/opengl/libs/
Android.mk 20 # needed on sim build because of weird logging issues
79 # needed on sim build because of weird logging issues
115 # needed on sim build because of weird logging issues
  /frameworks/base/services/camera/libcameraservice/
Android.mk 6 ifneq ($(filter sooner generic sim,$(TARGET_DEVICE)),)
  /external/jpeg/
Android.mk 27 # the assembler is only for the ARM version, don't break the Linux sim
  /sdk/emulator/gps/
Android.mk 18 ifneq ($(TARGET_PRODUCT),sim)
  /sdk/emulator/sensors/
Android.mk 18 ifneq ($(TARGET_PRODUCT),sim)
  /external/wpa_supplicant/
events.c 166 * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
172 * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
178 int aka = 0, sim = 0, type; local
184 sim = 1;
192 sim = 1;
201 sim = 0;
205 if (!sim && !aka) {
207 "SIM, but neither EAP-SIM nor EAP-AKA are enabled")
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_sim_db.c 2 * hostapd / EAP-SIM database/authenticator gateway
14 * This is an example implementation of the EAP-SIM/AKA database/authentication
18 * EAP-SIM/AKA pseudonyms and re-auth identities. It can be used with different
53 } sim; member in union:eap_sim_db_pending::__anon8667
116 * SIM-RESP-AUTH <IMSI> Kc(i):SRES(i):RAND(i) ...
117 * SIM-RESP-AUTH <IMSI> FAILURE
123 wpa_printf(MSG_DEBUG, "EAP-SIM DB: No pending entry for the "
130 wpa_printf(MSG_DEBUG, "EAP-SIM DB: External server reported "
148 if (hexstr2bin(start, entry->u.sim.kc[num_chal],
157 if (hexstr2bin(start, entry->u.sim.sres[num_chal]
    [all...]
  /external/v8/src/arm/
simulator-arm.h 294 assembler::arm::Simulator* sim = assembler::arm::Simulator::current(); local
295 return sim->PushAddress(try_catch_address);
simulator-arm.cc 59 explicit Debugger(Simulator* sim);
87 Debugger::Debugger(Simulator* sim) {
88 sim_ = sim;
231 char* line = ReadLine("sim> ");
534 Simulator* sim = reinterpret_cast<Simulator*>( local
536 if (sim == NULL) {
538 sim = new Simulator();
539 v8::internal::Thread::SetThreadLocal(simulator_key, sim);
541 return sim;
    [all...]
  /external/v8/src/mips/
simulator-mips.h 299 assembler::mips::Simulator* sim = assembler::mips::Simulator::current(); local
300 return sim->PushAddress(try_catch_address);
simulator-mips.cc 68 explicit Debugger(Simulator* sim);
97 Debugger::Debugger(Simulator* sim) {
98 sim_ = sim;
275 char* line = ReadLine("sim> ");
577 Simulator* sim = reinterpret_cast<Simulator*>( local
579 if (sim == NULL) {
581 sim = new Simulator();
582 v8::internal::Thread::SetThreadLocal(simulator_key, sim);
584 return sim;
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
HTMLEntities.properties 240 sim=8764
  /external/wpa_supplicant_6/wpa_supplicant/
events.c 177 * wpa_supplicant_scard_init - Initialize SIM/USIM access with PC/SC
183 * configured to use PC/SC for SIM/USIM access (EAP-SIM or EAP-AKA).
189 int aka = 0, sim = 0, type; local
195 sim = 1;
203 sim = 1;
212 sim = 0;
216 if (!sim && !aka) {
218 "SIM, but neither EAP-SIM nor EAP-AKA are enabled")
    [all...]
  /build/core/
envsetup.mk 22 # The product defaults to generic on hardware and sim on sim
27 TARGET_PRODUCT := sim
124 # ... but not if we're building the sim...
  /development/simulator/app/
Android.mk 121 asset_target := $(HOST_COMMON_OUT_ROOT)/sim-assets/simulator$(COMMON_PACKAGE_SUFFIX)
  /packages/apps/Phone/src/com/android/phone/
PhoneApp.java 251 // like the "SIM missing" and "Sim locked" cases (bug 1804111).
254 // Some products don't have the concept of a "SIM network lock"
256 + "not showing 'SIM network unlock' PIN entry screen");
258 // Normal case: show the "SIM network unlock" PIN entry screen.
260 // they enter a valid SIM network PIN.
261 Log.i(LOG_TAG, "show sim depersonal panel");
324 // Marks the event where the SIM goes into ready state.
473 IccCard sim = phone.getIccCard(); local
474 if (sim != null)
1280 IccCard sim = phone.getIccCard(); local
    [all...]
  /external/icu4c/common/
Android.mk 113 # device and sim builds can use the same codepath, and it's hard to break one
  /frameworks/base/libs/utils/
Android.mk 111 endif # sim

Completed in 539 milliseconds

1 2 3