Lines Matching defs:result

95      * @param callback result callback. Call with {@code true} to keep an inbound SMS message and
113 * @param callback result callback. Call with a {@link SendSmsResult}.
132 * @param callback result callback. Call with a {@link SendSmsResult}.
150 * @param callback result callback. Call with a {@link SendMultipartSmsResult}.
170 * @param callback result callback. Call with a {@link SendMmsResult}.
187 * @param callback result callback. Call with a status code which is one of
209 * The result of sending an MMS.
216 * Constructs a SendMmsResult with the MMS send result, and the SendConf PDU.
222 * was sent. sendConfPdu is ignored if the {@code result} is not
251 * The result of sending an SMS.
291 * The result of sending a multipart SMS.
336 * Invoked when the result is available.
338 * @param result the result
340 public void onReceiveResult(@NonNull T result) throws RemoteException;
353 public void onReceiveResult(final Boolean result) throws RemoteException {
354 callback.onFilterComplete(result);
364 public void onReceiveResult(final SendSmsResult result) throws RemoteException {
365 callback.onSendSmsComplete(result.getSendStatus(), result.getMessageRef());
375 public void onReceiveResult(final SendSmsResult result) throws RemoteException {
376 callback.onSendSmsComplete(result.getSendStatus(), result.getMessageRef());
387 public void onReceiveResult(final SendMultipartSmsResult result)
390 result.getSendStatus(), result.getMessageRefs());
400 public void onReceiveResult(final SendMmsResult result) throws RemoteException {
401 callback.onSendMmsComplete(result.getSendStatus(), result.getSendConfPdu());
411 public void onReceiveResult(Integer result) throws RemoteException {
412 callback.onDownloadMmsComplete(result);