OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AtCommandResult
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/bluetooth/
AtCommandHandler.java
19
import android.bluetooth.
AtCommandResult
;
37
public
AtCommandResult
handleBasicCommand(String arg) {
38
return new
AtCommandResult
(
AtCommandResult
.ERROR);
47
public
AtCommandResult
handleActionCommand() {
48
return new
AtCommandResult
(
AtCommandResult
.ERROR);
57
public
AtCommandResult
handleReadCommand() {
58
return new
AtCommandResult
(
AtCommandResult
.ERROR)
[
all
...]
AtCommandResult.java
34
public class
AtCommandResult
{
47
* Construct a new
AtCommandResult
with given result code, and an empty
51
public
AtCommandResult
(int resultCode) {
57
* Construct a new
AtCommandResult
with result code OK, and the specified
61
public
AtCommandResult
(String response) {
78
* Add the given result into this
AtCommandResult
object.<p>
81
* @param result The
AtCommandResult
to add to this result.
83
public void addResult(
AtCommandResult
result) {
AtParser.java
248
public
AtCommandResult
process(String raw_input) {
261
return new
AtCommandResult
(
AtCommandResult
.UNSOLICITED);
267
return new
AtCommandResult
(
AtCommandResult
.ERROR);
272
AtCommandResult
result =
273
new
AtCommandResult
(
AtCommandResult
.UNSOLICITED);
289
new
AtCommandResult
(
AtCommandResult
.ERROR))
[
all
...]
HeadsetBase.java
127
AtCommandResult
result = mAtParser.process(input);
131
if (result.getResultCode() ==
AtCommandResult
.ERROR) {
/packages/apps/Phone/src/com/android/phone/
BluetoothHandsfree.java
20
import android.bluetooth.
AtCommandResult
;
685
AtCommandResult
result = ring();
[
all
...]
BluetoothAtPhonebook.java
22
import android.bluetooth.
AtCommandResult
;
132
public
AtCommandResult
handleReadCommand() {
134
return new
AtCommandResult
(result);
137
public
AtCommandResult
handleSetCommand(Object[] args) {
139
return new
AtCommandResult
(
AtCommandResult
.ERROR);
146
return new
AtCommandResult
(
AtCommandResult
.OK);
152
public
AtCommandResult
handleTestCommand() {
153
return new
AtCommandResult
( "+CSCS: (\"UTF-8\",\"IRA\",\"GSM\")")
[
all
...]
Completed in 2737 milliseconds