Searched defs:code (Results 1 - 25 of 102) sorted by relevance

12345

/frameworks/base/libs/ui/
H A DIOverlay.cpp53 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
55 switch(code) {
62 return BBinder::onTransact(code, data, reply, flags);
52 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICameraService.cpp53 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
55 switch(code) {
64 return BBinder::onTransact(code, data, reply, flags);
52 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DICameraClient.cpp82 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
84 switch(code) {
112 return BBinder::onTransact(code, data, reply, flags);
81 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DISurfaceComposer.cpp130 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
132 switch(code) {
179 return BBinder::onTransact(code, data, reply, flags);
129 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/cmds/keystore/
H A Dkeystore_cli.c48 uint8_t code; local
73 if (recv(sock, &code, 1, 0) != 1) {
77 printf("%d %s\n", code , responses[code] ? responses[code] : "Unknown");
H A Dkeystore_get.h39 uint8_t code = 'g'; local
50 if (send(sock, &code, 1, 0) == 1 && send(sock, bytes, 2, 0) == 2 &&
52 recv(sock, &code, 1, 0) == 1 && code == /* NO_ERROR */ 1 &&
/frameworks/base/core/java/android/webkit/
H A DMockGeolocation.java40 public void setError(int code, String message) { argument
42 nativeSetError(code, message);
58 private static native void nativeSetError(int code, String message); argument
H A DPluginData.java28 * status code. The PluginData class is the container for all these
53 * The associated HTTP response code.
64 * @param length The HTTP response status code.
74 int code) {
78 mStatusCode = code;
124 * Returns the HTTP status code for the response.
126 * @return The HTTP statue code, e.g 200.
70 PluginData( InputStream stream, long length, Map<String, String[]> headers, int code) argument
/frameworks/base/libs/binder/
H A DIPermissionController.cpp59 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
62 switch(code) {
75 return BBinder::onTransact(code, data, reply, flags);
58 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/media/libmedia/
H A DIAudioFlingerClient.cpp69 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
71 switch(code) {
95 return BBinder::onTransact(code, data, reply, flags);
68 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIMediaPlayerClient.cpp54 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
56 switch(code) {
66 return BBinder::onTransact(code, data, reply, flags);
53 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIAudioRecord.cpp83 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
85 switch(code) {
102 return BBinder::onTransact(code, data, reply, flags);
82 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
H A DIAudioTrack.cpp108 uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags)
110 switch(code) {
142 return BBinder::onTransact(code, data, reply, flags);
107 onTransact( uint32_t code, const Parcel& data, Parcel* reply, uint32_t flags) argument
/frameworks/base/core/java/android/content/
H A DUriMatcher.java123 * @param code the code to match for the root URI
125 public UriMatcher(int code) argument
127 mCode = code;
142 * Add a URI to match, and the code to return when this URI is
150 * @param code the code that is returned when a URI is matched
153 public void addURI(String authority, String path, int code) argument
155 if (code < 0) {
156 throw new IllegalArgumentException("code "
[all...]
H A DIEntityIterator.java60 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
62 switch (code) {
129 return super.onTransact(code, data, reply, flags);
/frameworks/base/cmds/app_process/
H A Dapp_main.cpp87 virtual void onExit(int code) argument
96 AndroidRuntime::onExit(code);
/frameworks/base/core/java/android/net/http/
H A DLoggingEventHandler.java36 int code, /* Status-Code value */
41 " code: " + code +
34 status(int major_version, int minor_version, int code, String reason_phrase) argument
/frameworks/base/core/java/android/os/
H A DIBinder.java88 * The first transaction code available for user commands.
92 * The last transaction code available for user commands.
97 * IBinder protocol transaction code: pingBinder().
102 * IBinder protocol transaction code: dump internal state.
107 * IBinder protocol transaction code: interrogate the recipient side
161 * @param code The action to perform. This should
172 public boolean transact(int code, Parcel data, Parcel reply, int flags) argument
H A DServiceManagerNative.java50 public boolean onTransact(int code, Parcel data, Parcel reply, int flags) argument
53 switch (code) {
/frameworks/base/media/libdrm/mobile2/include/util/domcore/
H A DDOMException.h26 * values in ordinary processing situations, such as out-of-bound errors when using <code>NodeList</code>.
37 short code; member in class:DOMException
39 DOMException(short code) argument
41 this->code = code;
151 return code;
/frameworks/base/obex/javax/obex/
H A DServerSession.java9 * - Redistributions of source code must retain the above copyright notice,
149 * <code>ServerOperation</code> object to the request handler. The
150 * <code>ServerOperation</code> object will handle the rest of the request.
153 * the response code to use and send the reply. The
154 * <code>ServerOperation</code> object will always reply with a
194 * <code>ServerOperation</code> objec
224 sendResponse(int code, byte[] header) argument
645 validateResponseCode(int code) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/test/
H A DSimulatedRadioControl.java49 public void triggerSsn(int type, int code); argument
/frameworks/base/tests/CoreTests/com/android/internal/telephony/gsm/
H A DGSMTestHandler.java95 public Message waitForMessage(int code) { argument
115 if (msg == null || code == GSMPhoneTest.ANY_MESSAGE || msg.what == code) return msg;
/frameworks/base/cmds/service/
H A Dservice.cpp120 int32_t code = atoi(argv[optind++]); local
237 service->transact(code, data, &reply);
248 aerr << "service: No code specified for call" << endl;
/frameworks/base/cmds/servicemanager/
H A Dbinder.h24 uint32_t code; member in struct:binder_txn
79 void *target, uint32_t code);

Completed in 329 milliseconds

12345