Searched defs:cookie (Results 1 - 25 of 42) sorted by relevance

12

/frameworks/base/tools/aapt/
H A Dprintapk.cpp34 void* cookie; local
80 cookie = NULL;
81 while ((entry = iterate_zipfile(zip, &cookie))) {
/frameworks/native/libs/utils/
H A DTextOutput.cpp122 static void textOutputPrinter(void* cookie, const char* txt) argument
124 ((TextOutput*)cookie)->print(txt, strlen(txt));
H A DDebug.cpp41 static void defaultPrintFunc(void* cookie, const char* txt) argument
163 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) argument
168 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer);
174 debugPrintFunc func, void* cookie)
188 if (singleLineBytesCutoff < 0) func(cookie, "\n");
189 func(cookie, "(NULL)");
194 if (singleLineBytesCutoff < 0) func(cookie, "\n");
195 func(cookie, "(empty)");
200 if (singleLineBytesCutoff < 0) func(cookie, "\
171 printHexData(int32_t indent, const void *buf, size_t length, size_t bytesPerLine, int32_t singleLineBytesCutoff, size_t alignment, bool cStyle, debugPrintFunc func, void* cookie) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DTextInfo.java42 * @param cookie the cookie for this TextInfo
45 public TextInfo(String text, int cookie, int sequence) { argument
50 mCookie = cookie;
81 * @return the cookie of TextInfo
H A DSuggestionsInfo.java67 * @param cookie the cookie of the input TextInfo
68 * @param sequence the cookie of the input TextInfo
71 int suggestionsAttributes, String[] suggestions, int cookie, int sequence) {
80 mCookie = cookie;
108 * Set the cookie and the sequence of SuggestionsInfo which are set to TextInfo from a client
110 * @param cookie the cookie of an input TextInfo
111 * @param sequence the cookie of an input TextInfo
113 public void setCookieAndSequence(int cookie, in argument
70 SuggestionsInfo( int suggestionsAttributes, String[] suggestions, int cookie, int sequence) argument
[all...]
/frameworks/native/include/media/hardware/
H A DHDCPAPI.h26 typedef void (*ObserverFunc)(void *cookie, int msg, int ext1, int ext2);
54 HDCPModule(void *cookie, ObserverFunc observerNotify) {}; argument
90 void *cookie, android::HDCPModule::ObserverFunc);
/frameworks/base/core/java/android/os/
H A DRemoteCallbackList.java60 Callback(E callback, Object cookie) { argument
62 mCookie = cookie;
75 * that does not take a cookie object.
96 * @param cookie Optional additional data to be associated with this
107 public boolean register(E callback, Object cookie) { argument
114 Callback cb = new Callback(callback, cookie);
172 * does not provide a cookie.
186 * @param cookie The cookie object original provided to
191 public void onCallbackDied(E callback, Object cookie) { argument
[all...]
/frameworks/native/include/binder/
H A DBpBinder.h45 void* cookie = NULL,
48 void* cookie = NULL,
104 void* cookie; member in struct:android::BpBinder::Obituary
/frameworks/av/media/libstagefright/
H A DTimedEventQueue.cpp128 void *cookie, const sp<TimedEventQueue::Event> &event) {
130 static_cast<TimedEventQueue::event_id *>(cookie);
155 bool (*predicate)(void *cookie, const sp<Event> &event),
156 void *cookie,
162 if (!(*predicate)(cookie, (*it).event)) {
127 MatchesEventID( void *cookie, const sp<TimedEventQueue::Event> &event) argument
154 cancelEvents( bool (predicate)void *cookie, const sp<Event> &event), void *cookie, bool stopAfterFirstMatch) argument
H A DAudioPlayer.cpp310 void *buffer, size_t size, void *cookie) {
311 AudioPlayer *me = (AudioPlayer *)cookie;
308 AudioSinkCallback( MediaPlayerBase::AudioSink *audioSink, void *buffer, size_t size, void *cookie) argument
/frameworks/base/cmds/servicemanager/
H A Dbinder.h17 void *cookie; member in struct:binder_object
23 void *cookie; member in struct:binder_txn
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java56 public Object cookie; field in class:AsyncQueryHandler.WorkerArgs
148 * @param cookie An object that gets passed into {@link #onQueryComplete}
164 public void startQuery(int token, Object cookie, Uri uri, argument
178 args.cookie = cookie;
203 * @param cookie An object that gets passed into {@link #onInsertComplete}
207 public final void startInsert(int token, Object cookie, Uri uri, argument
216 args.cookie = cookie;
229 * @param cookie A
233 startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
261 startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs) argument
286 onQueryComplete(int token, Object cookie, Cursor cursor) argument
299 onInsertComplete(int token, Object cookie, Uri uri) argument
312 onUpdateComplete(int token, Object cookie, int result) argument
325 onDeleteComplete(int token, Object cookie, int result) argument
[all...]
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DCallerInfoTest.java201 public void onQueryComplete(int token, Object cookie, CallerInfo info) { argument
/frameworks/av/include/media/
H A DMediaPlayerInterface.h67 typedef void (*notify_callback_f)(void* cookie,
79 AudioSink *audioSink, void *buffer, size_t size, void *cookie);
101 void *cookie = NULL,
186 void* cookie, notify_callback_f notifyFunc) {
188 mCookie = cookie; mNotify = notifyFunc;
185 setNotifyCallback( void* cookie, notify_callback_f notifyFunc) argument
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp129 void* cookie,
154 p->setNotifyCallback(cookie, notifyFunc);
127 createPlayer( player_type playerType, void* cookie, notify_callback_f notifyFunc) argument
/frameworks/base/core/java/android/widget/
H A DQuickContactBadge.java261 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
270 createUri = Uri.fromParts("tel", (String)cookie, null);
284 createUri = Uri.fromParts("mailto", (String)cookie, null);
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsRecorder.java88 DropBoxManager dropBox, String cookie, long bucketDuration, boolean onlyTags) {
92 mCookie = cookie;
87 NetworkStatsRecorder(FileRotator rotator, NonMonotonicObserver<String> observer, DropBoxManager dropBox, String cookie, long bucketDuration, boolean onlyTags) argument
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfoAsyncQuery.java67 public void onQueryComplete(int token, Object cookie, CallerInfo ci); argument
72 * Wrap the cookie from the WorkerArgs with additional information needed by our
77 public Object cookie; field in class:CallerInfoAsyncQuery.CookieWrapper
132 CookieWrapper cw = (CookieWrapper) args.cookie;
201 protected void onQueryComplete(int token, Object cookie, Cursor cursor) { argument
204 //get the cookie and notify the listener.
205 CookieWrapper cw = (CookieWrapper) cookie;
294 cw.listener.onQueryComplete(token, cw.cookie, mCallerInfo);
310 OnQueryCompleteListener listener, Object cookie) {
320 cw.cookie
309 startQuery(int token, Context context, Uri contactRef, OnQueryCompleteListener listener, Object cookie) argument
339 startQuery(int token, Context context, String number, OnQueryCompleteListener listener, Object cookie) argument
427 addQueryListener(int token, OnQueryCompleteListener listener, Object cookie) argument
[all...]
/frameworks/native/include/utils/
H A DBasicHashtable.h46 uint32_t cookie; member in struct:android::BasicHashtableImpl::Bucket
108 // Copies the content of buckets (copies the cookie and invokes copyBucketEntry
118 // Trim a hash code to 30 bits to match what we store in the bucket's cookie.
348 return bucketAt(mBuckets, index).cookie;
/frameworks/native/libs/binder/
H A DBinder.cpp120 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
126 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
119 linkToDeath( const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) argument
125 unlinkToDeath( const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, wp<DeathRecipient>* outRecipient) argument
H A DBpBinder.cpp174 const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags)
178 ob.cookie = cookie;
208 const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags,
221 || (recipient == NULL && obit.cookie == cookie))
173 linkToDeath( const sp<DeathRecipient>& recipient, void* cookie, uint32_t flags) argument
207 unlinkToDeath( const wp<DeathRecipient>& recipient, void* cookie, uint32_t flags, wp<DeathRecipient>* outRecipient) argument
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp109 uint32_t cookie = h.cookieAt(index); local
110 *collision = cookie & BasicHashtable<TKey, TEntry>::Bucket::COLLISION;
111 *present = cookie & BasicHashtable<TKey, TEntry>::Bucket::PRESENT;
112 *hash = cookie & BasicHashtable<TKey, TEntry>::Bucket::HASH_MASK;
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp953 M4OSA_Void VideoEditorPreviewController::setJniCallback(void* cookie, argument
956 mJniCookie = cookie;
1154 void* cookie, int msg, int ext1, int ext2)
1157 (VideoEditorPreviewController *)cookie;
1153 notify( void* cookie, int msg, int ext1, int ext2) argument
H A DVideoEditorAudioPlayer.cpp581 void *buffer, size_t size, void *cookie) {
582 VideoEditorAudioPlayer *me = (VideoEditorAudioPlayer *)cookie;
579 AudioSinkCallback( MediaPlayerBase::AudioSink *audioSink, void *buffer, size_t size, void *cookie) argument
/frameworks/base/core/java/android/net/
H A DNetworkStats.java498 NetworkStats left, NetworkStats right, NonMonotonicObserver<C> observer, C cookie) {
502 observer.foundNonMonotonic(left, -1, right, -1, cookie);
536 observer.foundNonMonotonic(left, i, right, j, cookie);
693 NetworkStats left, int leftIndex, NetworkStats right, int rightIndex, C cookie);
497 subtract( NetworkStats left, NetworkStats right, NonMonotonicObserver<C> observer, C cookie) argument
692 foundNonMonotonic( NetworkStats left, int leftIndex, NetworkStats right, int rightIndex, C cookie) argument

Completed in 1162 milliseconds

12