Home
last modified time | relevance | path

Searched refs:JsonRpcResult (Results 1 – 5 of 5) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonRpcHandler.java59 return JsonRpcResult.wtf(); in getResponse()
112 return JsonRpcResult.result(id, rpcResult); in getResponse()
133 return JsonRpcResult.wtf(); in getResponse()
165 return JsonRpcResult.wtf(); in getValidationErrors()
210 return JsonRpcResult.wtf(); in handleSessionRpc()
217 return JsonRpcResult.wtf(); in handleSessionRpc()
DJsonRpcResult.java30 public class JsonRpcResult { class
32 private JsonRpcResult() { in JsonRpcResult() method in JsonRpcResult
/external/sl4a/Common/src/com/googlecode/android_scripting/
DSl4aErrors.java19 import com.googlecode.android_scripting.jsonrpc.JsonRpcResult;
74 return JsonRpcResult.error(id, mSl4aException); in toJson()
85 return JsonRpcResult.error(id, mSl4aException, details); in toJson()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
DMessageHandler.java27 import com.googlecode.android_scripting.jsonrpc.JsonRpcResult;
120 json = JsonRpcResult.error(id, (Throwable) result); in putResult()
122 json = JsonRpcResult.result(id, result); in putResult()
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/html/
DHtmlActivityTask.java45 import com.googlecode.android_scripting.jsonrpc.JsonRpcResult;
228 return JsonRpcResult.error(id, new RpcError("Unknown RPC.")).toString(); in call()
231 return JsonRpcResult.result(id, rpc.invoke(mReceiverManager, params)).toString(); in call()
234 return JsonRpcResult.error(id, t).toString(); in call()