Searched refs:obj (Results 226 - 250 of 364) sorted by path

1234567891011>>

/frameworks/base/services/jni/
H A Dcom_android_server_location_GpsLocationProvider.cpp280 static jboolean android_location_GpsLocationProvider_init(JNIEnv* env, jobject obj) argument
284 mCallbacksObj = env->NewGlobalRef(obj);
304 static void android_location_GpsLocationProvider_cleanup(JNIEnv* env, jobject obj) argument
310 static jboolean android_location_GpsLocationProvider_set_position_mode(JNIEnv* env, jobject obj, argument
320 static jboolean android_location_GpsLocationProvider_start(JNIEnv* env, jobject obj) argument
328 static jboolean android_location_GpsLocationProvider_stop(JNIEnv* env, jobject obj) argument
336 static void android_location_GpsLocationProvider_delete_aiding_data(JNIEnv* env, jobject obj, jint flags) argument
342 static jint android_location_GpsLocationProvider_read_sv_status(JNIEnv* env, jobject obj, argument
374 jobject obj, jint type, jint mcc, jint mnc, jint lac, jint cid)
401 jobject obj, jbyteArra
373 android_location_GpsLocationProvider_agps_set_reference_location_cellid(JNIEnv* env, jobject obj, jint type, jint mcc, jint mnc, jint lac, jint cid) argument
400 android_location_GpsLocationProvider_agps_send_ni_message(JNIEnv* env, jobject obj, jbyteArray ni_msg, jint size) argument
417 android_location_GpsLocationProvider_agps_set_id(JNIEnv *env, jobject obj, jint type, jstring setid_string) argument
430 android_location_GpsLocationProvider_read_nmea(JNIEnv* env, jobject obj, jbyteArray nmeaArray, jint buffer_size) argument
443 android_location_GpsLocationProvider_inject_time(JNIEnv* env, jobject obj, jlong time, jlong timeReference, jint uncertainty) argument
450 android_location_GpsLocationProvider_inject_location(JNIEnv* env, jobject obj, jdouble latitude, jdouble longitude, jfloat accuracy) argument
457 android_location_GpsLocationProvider_supports_xtra(JNIEnv* env, jobject obj) argument
462 android_location_GpsLocationProvider_inject_xtra_data(JNIEnv* env, jobject obj, jbyteArray data, jint length) argument
475 android_location_GpsLocationProvider_agps_data_conn_open(JNIEnv* env, jobject obj, jstring apn) argument
490 android_location_GpsLocationProvider_agps_data_conn_closed(JNIEnv* env, jobject obj) argument
499 android_location_GpsLocationProvider_agps_data_conn_failed(JNIEnv* env, jobject obj) argument
508 android_location_GpsLocationProvider_set_agps_server(JNIEnv* env, jobject obj, jint type, jstring hostname, jint port) argument
520 android_location_GpsLocationProvider_send_ni_response(JNIEnv* env, jobject obj, jint notifId, jint response) argument
531 android_location_GpsLocationProvider_get_internal_state(JNIEnv* env, jobject obj) argument
545 android_location_GpsLocationProvider_update_network_state(JNIEnv* env, jobject obj, jboolean connected, int type, jboolean roaming, jboolean available, jstring extraInfo, jstring apn) argument
[all...]
H A Dcom_android_server_power_PowerManagerService.cpp141 static void nativeInit(JNIEnv* env, jobject obj) { argument
142 gPowerManagerServiceObj = env->NewGlobalRef(obj);
/frameworks/base/telephony/java/android/telephony/
H A DPhoneStateListener.java354 PhoneStateListener.this.onServiceStateChanged((ServiceState)msg.obj);
366 PhoneStateListener.this.onCellLocationChanged((CellLocation)msg.obj);
369 PhoneStateListener.this.onCallStateChanged(msg.arg1, (String)msg.obj);
379 PhoneStateListener.this.onSignalStrengthsChanged((SignalStrength)msg.obj);
385 PhoneStateListener.this.onCellInfoChanged((List<CellInfo>)msg.obj);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java131 WorkerArgs args = (WorkerArgs) msg.obj;
165 reply.obj = args;
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java67 public boolean equals(Object obj) { argument
68 if (obj instanceof ClassPathPackageInfo) {
69 ClassPathPackageInfo that = (ClassPathPackageInfo) obj;
/frameworks/base/tests/BrowserTestPlugin/jni/
H A DPluginObject.cpp63 static void pluginInvalidate(NPObject *obj);
64 static bool pluginHasProperty(NPObject *obj, NPIdentifier name);
65 static bool pluginHasMethod(NPObject *obj, NPIdentifier name);
66 static bool pluginGetProperty(NPObject *obj, NPIdentifier name, NPVariant *variant);
67 static bool pluginSetProperty(NPObject *obj, NPIdentifier name, const NPVariant *variant);
68 static bool pluginInvoke(NPObject *obj, NPIdentifier name, const NPVariant *args, uint32_t argCount, NPVariant *result);
69 static bool pluginInvokeDefault(NPObject *obj, const NPVariant *args, uint32_t argCount, NPVariant *result);
71 static void pluginDeallocate(NPObject *obj);
121 static bool pluginHasProperty(NPObject *obj, NPIdentifier name) argument
130 static bool pluginHasMethod(NPObject *obj, NPIdentifie argument
139 pluginGetProperty(NPObject *obj, NPIdentifier name, NPVariant *variant) argument
149 pluginSetProperty(NPObject *obj, NPIdentifier name, const NPVariant *variant) argument
154 pluginInvoke(NPObject *obj, NPIdentifier name, const NPVariant *args, uint32_t argCount, NPVariant *result) argument
163 pluginInvokeDefault(NPObject *obj, const NPVariant *args, uint32_t argCount, NPVariant *result) argument
168 pluginInvalidate(NPObject *obj) argument
189 pluginDeallocate(NPObject *obj) argument
[all...]
H A Dmain.cpp139 PluginObject *obj = NULL; local
144 obj = static_cast<PluginObject*>(instance->pdata);
145 memset(obj, 0, sizeof(*obj));
163 obj->subPlugin = new EventPlugin(instance);
170 PluginObject *obj = (PluginObject*) instance->pdata; local
171 if (obj) {
172 delete obj->subPlugin;
173 browser->releaseobject(&obj->header);
181 PluginObject *obj local
222 PluginObject *obj = reinterpret_cast<PluginObject*>(instance->pdata); local
259 PluginObject *obj = (PluginObject*) instance->pdata; local
[all...]
/frameworks/base/tests/BrowserTestPlugin/jni/event/
H A DEventPlugin.cpp53 PluginObject *obj = (PluginObject*) inst()->pdata; local
54 const int W = obj->window->width;
55 const int H = obj->window->height;
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DCallbackProxy.java92 HashMap map = (HashMap) msg.obj;
98 mEventSender.keyDown((String)msg.obj);
142 Bundle args = (Bundle) msg.obj;
150 Bundle modifierArgs = (Bundle) msg.obj;
222 (HashMap<String, String>) msg.obj;
232 mLayoutTestController.queueScript((String)msg.obj);
H A DTestShellActivity.java92 TestShellActivity.this.dump(mTimedOut, (String)msg.obj);
788 (WebView.WebViewTransport) resultMsg.obj;
804 (WebView.WebViewTransport) resultMsg.obj;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSenderImpl.java170 bundle = (Bundle)msg.obj;
236 bundle = (Bundle)msg.obj;
312 bundle = (Bundle)msg.obj;
H A DLayoutTestsExecutor.java234 WebView.WebViewTransport transport = (WebView.WebViewTransport)resultMsg.obj;
H A DTestsListActivity.java56 mTestsList = (ArrayList<String>)msg.obj;
H A DTestsListPreloaderThread.java66 mDoneMsg.obj = mTestsList;
H A DTextResult.java53 mActualResult = (String)msg.obj;
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
H A DDirListActivity.java101 msg.obj = getDirList(mRelativePath);
361 if (msg.obj == null) {
366 (ListItem[])msg.obj));
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DFrameworkPerfActivity.java124 Bundle bundle = (Bundle)msg.obj;
H A DTestService.java162 newMsg.obj = msg.obj;
167 Bundle bundle = (Bundle)msg.obj;
177 msg.obj = bundle;
189 newMsg.obj = msg.obj;
495 Object obj = new Object();
514 Finalizable obj = new Finalizable();
/frameworks/base/tests/SerialChat/src/com/android/serialchat/
H A DSerialChat.java144 m.obj = text;
156 mLog.setText(mLog.getText() + (String)msg.obj);
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java353 private int hash(Object obj) { argument
354 if (obj == null) {
357 return obj.hashCode();
/frameworks/base/tools/aapt/tests/plurals/
H A Drun.sh10 -I out/target/common/obj/APPS/framework-res_intermediates/package-export.apk \
/frameworks/base/tools/aidl/
H A DAST.cpp289 :obj(NULL),
296 :obj(NULL),
307 :obj(o),
314 :obj(NULL),
321 :obj(o),
332 :obj(NULL),
358 if (this->obj != NULL) {
359 this->obj->Write(to);
H A DAST.h152 Expression* obj; member in struct:MethodCall
160 MethodCall(Expression* obj, const string& name);
162 MethodCall(Expression* obj, const string& name, int argc, ...);
H A Dgenerate_java_binder.cpp96 Variable* obj = new Variable(IBINDER_TYPE, "obj"); local
106 m->parameters.push_back(obj);
110 ifstatement->expression = new Comparison(obj, "==", NULL_VALUE);
115 // IInterface iin = obj.queryLocalInterface(DESCRIPTOR)
116 MethodCall* queryLocalInterface = new MethodCall(obj, "queryLocalInterface");
140 ne->arguments.push_back(obj);
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java236 public void addJavascriptInterface(Object obj, String interfaceName) { argument

Completed in 249 milliseconds

1234567891011>>