HomeSort by relevance Sort by last modified time
    Searched refs:gRadioState (Results 1 - 7 of 7) sorted by null

  /hardware/ril/mock-ril/src/js/
ctrl_server.js 28 rsp.state = gRadioState;
47 rsp.state = gRadioState;
49 print('gRadioState after setting: ' + gRadioState);
simulated_radio_tests.js 380 print('Expecting gRadioState to be ' + RADIOSTATE_UNAVAILABLE +
381 ', gRadioState is: ' + gRadioState);
401 print('Expecting gRadioState to be ' + RADIOSTATE_NV_READY +
402 ', gRadioState is: ' + gRadioState);
415 print('gRadioState should not be set: ' + gRadioState);
419 print('Expecting gRadioState to be ' + RADIOSTATE_SIM_READY +
420 ', gRadioState is: ' + gRadioState)
    [all...]
mock_ril.js 76 var gRadioState = RADIOSTATE_UNAVAILABLE;
simulated_radio.js 51 gRadioState = newRadioState;
845 if (gRadioState == RADIOSTATE_UNAVAILABLE) {
    [all...]
  /hardware/ril/mock-ril/src/cpp/
js_support.h 24 extern RIL_RadioState gRadioState;
mock_ril.cpp 145 DBG("currentState: gRadioState=%d", gRadioState);
146 return gRadioState;
js_support.cpp 48 RIL_RadioState gRadioState = RADIO_STATE_UNAVAILABLE;
52 return v8::Integer::New((int)gRadioState);
57 gRadioState = RIL_RadioState(value->Int32Value());
250 global->SetAccessor(v8::String::New("gRadioState"),
312 " gRadioState = i;\n"
313 " print('gRadioState=' + gRadioState);\n"
315 "gRadioState = 1;\n"
316 "print('last gRadioState=' + gRadioState);\n")
    [all...]

Completed in 211 milliseconds