HomeSort by relevance Sort by last modified time
    Searched full:pending (Results 1 - 25 of 1403) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dbus/dbus/
dbus-pending-call.c 2 /* dbus-pending-call.c Object representing a call in progress.
26 #include "dbus-pending-call-internal.h"
27 #include "dbus-pending-call.h"
83 * Creates a new pending reply object.
87 * @param timeout_handler timeout handler, takes pending call as data
95 DBusPendingCall *pending; local
114 pending = dbus_new0 (DBusPendingCall, 1);
116 if (pending == NULL)
124 pending, NULL);
129 dbus_free (pending);
    [all...]
dbus-pending-call-internal.h 2 /* dbus-pending-call-internal.h DBusPendingCall internal interfaces
34 dbus_bool_t _dbus_pending_call_is_timeout_added_unlocked (DBusPendingCall *pending);
35 void _dbus_pending_call_set_timeout_added_unlocked (DBusPendingCall *pending,
37 DBusTimeout * _dbus_pending_call_get_timeout_unlocked (DBusPendingCall *pending);
38 dbus_uint32_t _dbus_pending_call_get_reply_serial_unlocked (DBusPendingCall *pending);
39 void _dbus_pending_call_set_reply_serial_unlocked (DBusPendingCall *pending,
41 DBusConnection * _dbus_pending_call_get_connection_and_lock (DBusPendingCall *pending);
42 DBusConnection * _dbus_pending_call_get_connection_unlocked (DBusPendingCall *pending);
43 dbus_bool_t _dbus_pending_call_get_completed_unlocked (DBusPendingCall *pending);
44 void _dbus_pending_call_complete (DBusPendingCall *pending);
    [all...]
dbus-pending-call.h 2 /* dbus-pending-call.h Object representing a call in progress.
41 DBusPendingCall* dbus_pending_call_ref (DBusPendingCall *pending);
42 void dbus_pending_call_unref (DBusPendingCall *pending);
43 dbus_bool_t dbus_pending_call_set_notify (DBusPendingCall *pending,
47 void dbus_pending_call_cancel (DBusPendingCall *pending);
48 dbus_bool_t dbus_pending_call_get_completed (DBusPendingCall *pending);
49 DBusMessage* dbus_pending_call_steal_reply (DBusPendingCall *pending);
50 void dbus_pending_call_block (DBusPendingCall *pending);
54 dbus_bool_t dbus_pending_call_set_data (DBusPendingCall *pending,
58 void* dbus_pending_call_get_data (DBusPendingCall *pending,
    [all...]
dbus-connection-internal.h 78 DBusPendingCall *pending,
87 void _dbus_pending_call_notify (DBusPendingCall *pending);
89 DBusPendingCall *pending);
90 void _dbus_connection_block_pending_call (DBusPendingCall *pending);
91 void _dbus_pending_call_complete_and_unlock (DBusPendingCall *pending,
  /external/nist-sip/java/javax/sip/header/
SubscriptionStateHeader.java 18 String PENDING = "Pending";
  /external/bluetooth/bluez/audio/
source.c 154 struct pending_request *pending)
156 if (pending->conn)
157 dbus_connection_unref(pending->conn);
158 if (pending->msg)
159 dbus_message_unref(pending->msg);
160 if (pending->id)
161 a2dp_cancel(dev, pending->id);
163 g_free(pending);
247 struct pending_request *pending = source->connect; local
253 if (pending->msg)
275 struct pending_request *pending; local
453 struct pending_request *pending; local
539 struct pending_request *pending; local
578 struct pending_request *pending; local
    [all...]
sink.c 161 struct pending_request *pending)
163 if (pending->conn)
164 dbus_connection_unref(pending->conn);
165 if (pending->msg)
166 dbus_message_unref(pending->msg);
167 if (pending->id)
168 a2dp_cancel(dev, pending->id);
170 g_free(pending);
280 struct pending_request *pending = sink->connect; local
286 if (pending->msg)
308 struct pending_request *pending; local
492 struct pending_request *pending; local
577 struct pending_request *pending; local
616 struct pending_request *pending; local
655 struct pending_request *pending; local
689 struct pending_request *pending; local
    [all...]
  /external/dbus/bus/
connection.c 59 BusExpireList *pending_replies; /**< List of pending replies */
1438 BusPendingReply *pending = link->data; local
1489 BusPendingReply *pending; local
1535 BusPendingReply *pending; member in struct:__anon3324
1579 BusPendingReply *pending; local
1711 BusPendingReply *pending = d->link->data; local
1747 BusPendingReply *pending = link->data; local
    [all...]
  /packages/apps/Tag/src/com/android/apps/tag/
TagService.java 40 private static final String EXTRA_PENDING_INTENT = "pending";
61 PendingIntent pending = (PendingIntent) intent.getParcelableExtra(EXTRA_PENDING_INTENT); local
64 pending.send(this, 0, result);
66 if (DEBUG) Log.d(TAG, "Pending intent was canceled.");
95 PendingIntent pending) {
99 intent.putExtra(TagService.EXTRA_PENDING_INTENT, pending);
  /external/kernel-headers/original/linux/
udp.h 45 int pending; /* Any pending frames ? */ member in struct:udp_sock
52 __u16 len; /* total length of pending frames */
workqueue.h 15 unsigned long pending; member in struct:work_struct
52 (_work)->pending = 0; \
87 * Kill off a pending schedule_delayed_work(). Note that the work callback
97 clear_bit(0, &work->pending);
  /external/bluetooth/glib/gio/
gfileenumerator.c 64 guint pending : 1; member in struct:_GFileEnumeratorPrivate
210 if (enumerator->priv->pending)
229 enumerator->priv->pending = TRUE;
231 enumerator->priv->pending = FALSE;
269 if (enumerator->priv->pending)
279 enumerator->priv->pending = TRUE;
281 enumerator->priv->pending = FALSE;
297 enumerator->priv->pending = FALSE;
366 if (enumerator->priv->pending)
378 enumerator->priv->pending = TRUE
    [all...]
  /bionic/libc/kernel/common/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /development/ndk/platforms/android-3/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /external/dbus/test/name-test/
Makefile.am 19 noinst_PROGRAMS=test-names test-pending-call-dispatch test-threads-init
28 test-pending-call-dispatch.c
run-test.sh 30 echo "running test-pending-call-dispatch"
31 libtool --mode=execute $DEBUG $DBUS_TOP_BUILDDIR/test/name-test/test-pending-call-dispatch || die "test-client failed"
  /external/qemu/
qemu-aio.h 28 /* Flush any pending AIO operation. This function will block until all
34 * has moved before returning. This can issue new pending aio as
  /frameworks/base/telephony/java/com/android/internal/telephony/
MmiCode.java 28 PENDING,
48 * Cancels pending MMI request.
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
workqueue.h 22 unsigned long pending; member in struct:work_struct
40 #define INIT_WORK(_work, _func, _data) do { INIT_LIST_HEAD(&(_work)->entry); (_work)->pending = 0; PREPARE_WORK((_work), (_func), (_data)); init_timer(&(_work)->timer); } while (0)
  /dalvik/vm/alloc/
HeapWorker.h 43 * Block until all pending heap worker work has finished.
48 * Does not return until any pending finalizers have been called.
59 * is zero, any pending trim is cancelled.

Completed in 1304 milliseconds

1 2 3 4 5 6 7 8 91011>>