Lines Matching refs:thiz
99 JNIEnv* env, jobject thiz, jobjectArray jIgnoredNodes) { in com_android_DeviceAsWebcam_setupServicesAndStartListening() argument
100 return DeviceAsWebcamServiceManager::kInstance->setupServicesAndStartListening(env, thiz, in com_android_DeviceAsWebcam_setupServicesAndStartListening()
113 void DeviceAsWebcamNative::setStreamConfig(jobject thiz, bool mjpeg, uint32_t width, in setStreamConfig() argument
120 env->CallVoidMethod(thiz, kJavaMethods.setStreamConfig, jMjpeg, jWidth, jHeight, jFps); in setStreamConfig()
123 void DeviceAsWebcamNative::startStreaming(jobject thiz) { in startStreaming() argument
125 env->CallVoidMethod(thiz, kJavaMethods.startStreaming); in startStreaming()
127 void DeviceAsWebcamNative::stopStreaming(jobject thiz) { in stopStreaming() argument
129 env->CallVoidMethod(thiz, kJavaMethods.stopStreaming); in stopStreaming()
132 void DeviceAsWebcamNative::returnImage(jobject thiz, long timestamp) { in returnImage() argument
135 env->CallVoidMethod(thiz, kJavaMethods.returnImage, jTimestamp); in returnImage()
138 void DeviceAsWebcamNative::stopService(jobject thiz) { in stopService() argument
140 env->CallVoidMethod(thiz, kJavaMethods.stopService); in stopService()