Searched refs:user (Results 1 - 25 of 40) sorted by relevance

12

/frameworks/base/data/etc/
H A DAndroid.mk24 LOCAL_MODULE_TAGS := user
41 #LOCAL_MODULE_TAGS := user
/frameworks/base/include/camera/
H A DCameraHardwareInterface.h43 void* user);
47 void* user);
52 void* user);
99 void* user) = 0;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DApnSetting.java32 String user; field in class:ApnSetting
42 String user, String password, int authType, String[] types) {
52 this.user = user;
40 ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, String mmsc, String mmsProxy, String mmsPort, String user, String password, int authType, String[] types) argument
H A DGsmDataConnection.java104 authType = (apn.user != null) ? RILConstants.SETUP_DATA_AUTH_PAP_CHAP :
108 Integer.toString(RILConstants.DATA_PROFILE_DEFAULT), apn.apn, apn.user,
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java29 * Logic for parsing a text message typed by the user looking for smileys,
66 /** Music note that indicates user is listening to a music track. */
433 // We will assume the user meant HTTP. (One weird case is where they
960 private String user; field in class:AbstractMessageParser.Photo
964 public Photo(String user, String album, String photo, String text) { argument
966 this.user = user;
971 public String getUser() { return user; }
1000 /** Returns the URL for the RSS description of the user's albums. */
1001 public static String getRssUrl(String user) { argument
1007 getAlbumURL(String user, String album) argument
1012 getPhotoURL(String user, String album, String photo) argument
1030 private String user; field in class:AbstractMessageParser.FlickrPhoto
1035 FlickrPhoto(String user, String photo, String grouping, String groupingId, String text) argument
1107 getRssUrl(String user) argument
1117 getUserURL(String user) argument
1122 getPhotoURL(String user, String photo) argument
1127 getUserTagsURL(String user, String tagId) argument
1132 getUserSetsURL(String user, String setId) argument
[all...]
/frameworks/base/camera/libcameraservice/
H A DCameraService.h140 static void notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user);
141 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, void* user);
143 const sp<IMemory>& dataPtr, void* user);
145 static sp<Client> getClientFromCookie(void* user);
H A DCameraHardwareStub.h38 void* user);
H A DCameraHardwareStub.cpp118 void* user)
124 mCallbackCookie = user;
115 setCallbacks(notify_callback notify_cb, data_callback data_cb, data_callback_timestamp data_cb_timestamp, void* user) argument
H A DCameraService.cpp401 // from the user directly, or called by the destructor.
779 sp<CameraService::Client> CameraService::Client::getClientFromCookie(void* user) argument
782 CameraService *service = static_cast<CameraService*>(user);
1077 void CameraService::Client::notifyCallback(int32_t msgType, int32_t ext1, int32_t ext2, void* user) argument
1081 sp<Client> client = getClientFromCookie(user);
1107 void CameraService::Client::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, void* user) argument
1111 sp<Client> client = getClientFromCookie(user);
1155 const sp<IMemory>& dataPtr, void* user)
1159 sp<Client> client = getClientFromCookie(user);
1154 dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user) argument
/frameworks/base/include/media/
H A DAudioTrack.h91 * user: Pointer to context for use by the callback receiver.
103 typedef void (*callback_t)(int event, void* user, void *info);
130 * user Context for use by the callback receiver.
140 void* user = 0,
159 void* user = 0,
182 void* user = 0,
H A DAudioRecord.h91 * user: Pointer to context for use by the callback receiver.
101 typedef void (*callback_t)(int event, void* user, void *info);
128 * user Context for use by the callback receiver.
144 void* user = 0,
169 void* user = 0,
299 * Such loss typically occurs when the user space process is blocked longer than the capacity of audio driver buffers.
H A DToneGenerator.h273 static void audioCallback(int event, void* user, void *info);
/frameworks/base/include/private/media/
H A DAudioTrackShared.h43 volatile uint32_t user; member in struct:android::audio_track_cblk_t
/frameworks/base/media/libmedia/
H A DAudioRecord.cpp60 void* user,
65 frameCount, flags, cbf, user, notificationFrames);
92 void* user,
193 mUserData = user;
278 mNewPosition = mCblk->user + mUpdatePeriod;
383 *position = mCblk->user;
470 "user=%08x, server=%08x", cblk->user, cblk->server);
503 uint32_t u = cblk->user;
544 // sanity-check. user i
52 AudioRecord( int inputSource, uint32_t sampleRate, int format, uint32_t channels, int frameCount, uint32_t flags, callback_t cbf, void* user, int notificationFrames) argument
84 set( int inputSource, uint32_t sampleRate, int format, uint32_t channels, int frameCount, uint32_t flags, callback_t cbf, void* user, int notificationFrames, bool threadCanCallJava) argument
[all...]
H A DAudioTrack.cpp60 void* user,
65 frameCount, flags, cbf, user, notificationFrames, 0);
76 void* user,
81 0, flags, cbf, user, notificationFrames, sharedBuffer);
110 void* user,
243 mUserData = user;
483 LOGE("setLoop invalid value: loopStart %d, loopEnd %d, loopCount %d, framecount %d, user %d", loopStart, loopEnd, loopCount, mFrameCount, cblk->user);
566 if (position > mCblk->user) return BAD_VALUE;
695 if (cblk->user < cbl
52 AudioTrack( int streamType, uint32_t sampleRate, int format, int channels, int frameCount, uint32_t flags, callback_t cbf, void* user, int notificationFrames) argument
68 AudioTrack( int streamType, uint32_t sampleRate, int format, int channels, const sp<IMemory>& sharedBuffer, uint32_t flags, callback_t cbf, void* user, int notificationFrames) argument
102 set( int streamType, uint32_t sampleRate, int format, int channels, int frameCount, uint32_t flags, callback_t cbf, void* user, int notificationFrames, const sp<IMemory>& sharedBuffer, bool threadCanCallJava) argument
[all...]
/frameworks/base/cmds/keystore/
H A Dkeystore.c46 * user-defined password. To keep things simple, buffers are always larger than
440 static struct user { struct
453 struct user *user = users; local
457 while (~user->uid && user->uid != uid) {
458 ++user;
466 if (!(action->perm & user->perms)) {
472 if (~user->euid) {
473 uid = user
[all...]
/frameworks/base/core/jni/
H A Dandroid_server_BluetoothA2dpService.cpp51 static void onConnectSinkResult(DBusMessage *msg, void *user, void *n);
278 void onConnectSinkResult(DBusMessage *msg, void *user, void *n) { argument
282 const char *path = (const char *)user;
299 free(user);
H A Dandroid_media_AudioRecord.cpp87 static void recorderCallback(int event, void* user, void *info) { argument
94 audiorecord_callback_cookie *callbackInfo = (audiorecord_callback_cookie *)user;
96 if (user && env) {
108 audiorecord_callback_cookie *callbackInfo = (audiorecord_callback_cookie *)user;
110 if (user && env) {
192 lpCallbackData,// void* user
H A Dandroid_bluetooth_common.cpp87 void *user; member in struct:android::__anon26
103 // The user may not deref the message object.
104 req->user_cb(msg, req->user, req->nat);
121 void *user,
154 pending->user = user;
178 void *user,
190 reply, user, nat,
115 dbus_func_args_async_valist(JNIEnv *env, DBusConnection *conn, int timeout_ms, void (*user_cb)(DBusMessage *, void *, void*), void *user, void *nat, const char *path, const char *ifc, const char *func, int first_arg_type, va_list args) argument
174 dbus_func_args_async(JNIEnv *env, DBusConnection *conn, int timeout_ms, void (*reply)(DBusMessage *, void *, void*), void *user, void *nat, const char *path, const char *ifc, const char *func, int first_arg_type, ...) argument
H A Dandroid_server_BluetoothEventLoop.cpp1056 void onCreatePairedDeviceResult(DBusMessage *msg, void *user, void *n) { argument
1060 const char *address = (const char *)user;
1118 free(user);
1121 void onCreateDeviceResult(DBusMessage *msg, void *user, void *n) { argument
1125 const char *address= (const char *)user;
1146 free(user);
1149 void onDiscoverServicesResult(DBusMessage *msg, void *user, void *n) { argument
1153 const char *path = (const char *)user;
1170 free(user);
1173 void onGetDeviceServiceChannelResult(DBusMessage *msg, void *user, voi argument
[all...]
H A Dandroid_bluetooth_common.h105 void *user,
/frameworks/base/include/media/stagefright/
H A DAudioPlayer.h95 static void AudioCallback(int event, void *user, void *info);
/frameworks/base/media/jni/soundpool/
H A DSoundPool.h48 typedef void SoundPoolCallback(SoundPoolEvent event, SoundPool* soundPool, void* user);
145 static void callback(int event, void* user, void *info);
191 void setCallback(SoundPoolCallback* callback, void* user);
H A Dandroid_media_SoundPool.cpp171 static void android_media_callback(SoundPoolEvent event, SoundPool* soundPool, void* user) argument
173 LOGV("callback: (%d, %d, %d, %p, %p)", event.mMsg, event.mArg1, event.mArg2, soundPool, user);
175 env->CallStaticVoidMethod(fields.mSoundPoolClass, fields.mPostEvent, user, event.mMsg, event.mArg1, event.mArg2, NULL);
H A DSoundPool.cpp398 void SoundPool::setCallback(SoundPoolCallback* callback, void* user) argument
402 mUserData = user;
561 // as callback user data. This enables the detection of callbacks received from the old
640 void SoundChannel::callback(int event, void* user, void *info) argument
642 unsigned long toggle = (unsigned long)user & 1;
643 SoundChannel* channel = static_cast<SoundChannel*>((void *)((unsigned long)user & ~1));

Completed in 366 milliseconds

12