Lines Matching refs:status

35  * error codes into the voicemail status table so support on the dialer side is required.
111 VoicemailStatus.Editor status,
116 handled = handleConfigurationEvent(context, status, event);
119 handled = handleDataChannelEvent(status, event);
122 handled = handleNotificationChannelEvent(status, event);
125 handled = handleOtherEvent(status, event);
131 DefaultOmtpEventHandler.handleEvent(context, config, status, event);
136 Context context, VoicemailStatus.Editor status, OmtpEvents event) {
139 if (!isPinRandomized(context, status.getPhoneAccountHandle())) {
142 postError(status, PIN_NOT_SET);
146 if (isPinRandomized(context, status.getPhoneAccountHandle())) {
147 status.setConfigurationState(PIN_NOT_SET);
149 status.setConfigurationState(Status.CONFIGURATION_STATE_OK);
151 status
157 postError(status, PIN_NOT_SET);
160 postError(status, STATUS_SMS_TIMEOUT);
168 private static boolean handleDataChannelEvent(VoicemailStatus.Editor status, OmtpEvents event) {
173 postError(status, VMS_NO_CELLULAR);
178 postError(status, VMS_TIMEOUT);
181 postError(status, VMS_DNS_FAILURE);
184 postError(status, IMAP_ERROR);
187 postError(status, UNKNOWN_USER);
190 postError(status, UNKNOWN_DEVICE);
193 postError(status, INVALID_PASSWORD);
196 postError(status, MAILBOX_NOT_INITIALIZED);
199 postError(status, SERVICE_NOT_PROVISIONED);
202 postError(status, SERVICE_NOT_ACTIVATED);
205 postError(status, USER_BLOCKED);
210 postError(status, IMAP_ERROR);
223 private static boolean handleOtherEvent(VoicemailStatus.Editor status, OmtpEvents event) {
226 postError(status, MAILBOX_NOT_INITIALIZED);
229 postError(status, VMG_DNS_FAILURE);
232 postError(status, SPG_DNS_FAILURE);
235 postError(status, VMG_NO_CELLULAR);
238 postError(status, SPG_NO_CELLULAR);
241 postError(status, VMG_TIMEOUT);
244 postError(status, SERVICE_NOT_ACTIVATED);
247 postError(status, SUBSCRIBER_BLOCKED);
250 postError(status, SUBSCRIBER_UNKNOWN);
302 VvmLog.e(TAG, "status editor has null phone account handle");