/external/python/cpython3/PC/bdist_wininst/ |
D | extract.c | 28 BOOL ensure_directory(char *pathname, char *new_part, NOTIFYPROC notify) in ensure_directory() argument 36 if (!CreateDirectory(pathname, NULL) && notify) in ensure_directory() 37 notify(SYSTEM_ERROR, in ensure_directory() 40 notify(DIR_CREATED, pathname); in ensure_directory() 46 if (notify) in ensure_directory() 47 notify(SYSTEM_ERROR, in ensure_directory() 62 NOTIFYPROC notify) in map_new_file() argument 80 if (notify && notify(CAN_OVERWRITE, filename)) in map_new_file() 88 if (notify) in map_new_file() 89 notify(FILE_OVERWRITTEN, filename); in map_new_file() [all …]
|
/external/python/cpython2/PC/bdist_wininst/ |
D | extract.c | 29 BOOL ensure_directory(char *pathname, char *new_part, NOTIFYPROC notify) in ensure_directory() argument 37 if (!CreateDirectory(pathname, NULL) && notify) in ensure_directory() 38 notify(SYSTEM_ERROR, in ensure_directory() 41 notify(DIR_CREATED, pathname); in ensure_directory() 47 if (notify) in ensure_directory() 48 notify(SYSTEM_ERROR, in ensure_directory() 63 NOTIFYPROC notify) in map_new_file() argument 81 if (notify && notify(CAN_OVERWRITE, filename)) in map_new_file() 89 if (notify) in map_new_file() 90 notify(FILE_OVERWRITTEN, filename); in map_new_file() [all …]
|
/external/grpc-grpc/src/core/lib/transport/ |
D | connectivity_state.cc | 69 GRPC_CLOSURE_SCHED(w->notify, error); in grpc_connectivity_state_destroy() 108 grpc_closure* notify) { in grpc_connectivity_state_notify_on_state_change() argument 113 gpr_log(GPR_INFO, "CONWATCH: %p %s: unsubscribe notify=%p", tracker, in grpc_connectivity_state_notify_on_state_change() 114 tracker->name, notify); in grpc_connectivity_state_notify_on_state_change() 116 gpr_log(GPR_INFO, "CONWATCH: %p %s: from %s [cur=%s] notify=%p", tracker, in grpc_connectivity_state_notify_on_state_change() 118 grpc_connectivity_state_name(cur), notify); in grpc_connectivity_state_notify_on_state_change() 123 if (w != nullptr && w->notify == notify) { in grpc_connectivity_state_notify_on_state_change() 124 GRPC_CLOSURE_SCHED(notify, GRPC_ERROR_CANCELLED); in grpc_connectivity_state_notify_on_state_change() 131 if (rm_candidate != nullptr && rm_candidate->notify == notify) { in grpc_connectivity_state_notify_on_state_change() 132 GRPC_CLOSURE_SCHED(notify, GRPC_ERROR_CANCELLED); in grpc_connectivity_state_notify_on_state_change() [all …]
|
D | connectivity_state.h | 31 /** closure to notify on change */ 32 grpc_closure* notify; member 80 If current==NULL cancel notify if it is already queued (success==0 in that 85 grpc_closure* notify);
|
/external/adhd/cras/src/server/ |
D | cras_observer.h | 58 /* Notify observers of output volume change. */ 61 /* Notify observers of output mute change. */ 65 /* Notify observers of capture gain change. */ 68 /* Notify observers of capture mute change. */ 71 /* Notify observers of a nodes list change. */ 74 /* Notify observers of active output node change. */ 78 /* Notify observers of output node volume change. */ 82 /* Notify observers of node left-right swap change. */ 86 /* Notify observers of input node gain change. */ 90 /* Notify observers of suspend state changed. */ [all …]
|
/external/tensorflow/tensorflow/core/kernels/batching_util/ |
D | shared_batch_scheduler_test.cc | 204 first_batch_processed.Notify(); in TEST() 206 second_batch_processed.Notify(); in TEST() 208 third_batch_processed.Notify(); in TEST() 252 start_teardown.Notify(); in TEST() 254 stop_teardown.Notify(); in TEST() 263 first_batch_processed.Notify(); in TEST() 265 second_batch_processed.Notify(); in TEST() 306 first_batch_processed.Notify(); in TEST() 308 second_batch_processed.Notify(); in TEST() 334 start_teardown.Notify(); in TEST() [all …]
|
/external/grpc-grpc/src/core/ext/transport/chttp2/client/ |
D | chttp2_connector.cc | 50 grpc_closure* notify; member 132 // effects of scheduling c->notify: we start sending RPCs immediately in on_handshake_done() 149 grpc_closure* notify = c->notify; in on_handshake_done() local 150 c->notify = nullptr; in on_handshake_done() 151 GRPC_CLOSURE_SCHED(notify, error); in on_handshake_done() 182 grpc_closure* notify = c->notify; in connected() local 183 c->notify = nullptr; in connected() 184 GRPC_CLOSURE_SCHED(notify, error); in connected() 200 grpc_closure* notify) { in chttp2_connector_connect() argument 205 GPR_ASSERT(c->notify == nullptr); in chttp2_connector_connect() [all …]
|
/external/wayland/tests/ |
D | signal-test.c | 55 /* we just need different values of notify */ in TEST() 56 struct wl_listener l1 = {.notify = (wl_notify_func_t) 0x1}; in TEST() 57 struct wl_listener l2 = {.notify = (wl_notify_func_t) 0x2}; in TEST() 58 struct wl_listener l3 = {.notify = (wl_notify_func_t) 0x3}; in TEST() 60 struct wl_listener l4 = {.notify = signal_notify}; in TEST() 87 struct wl_listener l1 = {.notify = signal_notify}; in TEST() 104 struct wl_listener l1 = {.notify = signal_notify}; in TEST() 105 struct wl_listener l2 = {.notify = signal_notify}; in TEST() 106 struct wl_listener l3 = {.notify = signal_notify}; in TEST()
|
/external/ltp/testcases/kernel/syscalls/mq_notify/ |
D | mq_notify01.c | 44 int notify; member 52 .notify = SIGEV_NONE, 58 .notify = SIGEV_SIGNAL, 64 .notify = SIGEV_THREAD, 70 .notify = SIGEV_NONE, 76 .notify = SIGEV_NONE, 82 .notify = SIGEV_NONE, 88 .notify = SIGEV_NONE, 120 ev.sigev_notify = tc->notify; in do_test() 123 switch (tc->notify) { in do_test() [all …]
|
/external/libchrome/base/ |
D | callback_list_unittest.cc | 124 c1.Notify(1); in TEST() 131 c2.Notify(1, 2); in TEST() 138 c3.Notify(1, 2, 3); in TEST() 145 c4.Notify(1, 2, 3, 4); in TEST() 152 c5.Notify(1, 2, 3, 4, 5); in TEST() 160 c6.Notify(1, 2, 3, 4, 5, 6); in TEST() 178 cb_reg.Notify(); in TEST() 188 cb_reg.Notify(); in TEST() 213 cb_reg.Notify(10); in TEST() 223 cb_reg.Notify(10); in TEST() [all …]
|
/external/autotest/frontend/client/src/autotest/common/ |
D | XhrJsonRpcProxy.java | 33 notify.showError("Unable to connect to server"); in sendRequest() 38 notify.setLoading(true); in sendRequest() 49 notify.setLoading(false); in onError() 50 notify.showError("Unable to make RPC call", exception.toString()); in onError() 55 notify.setLoading(false); in onResponseReceived() 60 notify.showError("Received error " + Integer.toString(statusCode) + " " + in onResponseReceived() 77 JsonRpcProxy.notify.showError(exc.toString(), responseText); in handleResponseText()
|
/external/libcups/cups/ |
D | notify.c | 38 ipp_attribute_t *job_id, /* notify-job-id */ in cupsNotifySubject() 43 *printer_uri, /* notify-printer-uri */ in cupsNotifySubject() 44 *subscribed; /* notify-subscribed-event */ in cupsNotifySubject() 58 job_id = ippFindAttribute(event, "notify-job-id", IPP_TAG_INTEGER); in cupsNotifySubject() 63 printer_uri = ippFindAttribute(event, "notify-printer-uri", IPP_TAG_URI); in cupsNotifySubject() 64 subscribed = ippFindAttribute(event, "notify-subscribed-event", in cupsNotifySubject() 166 ipp_attribute_t *notify_text; /* notify-text */ in cupsNotifyText() 177 * Get the notify-text attribute from the server... in cupsNotifyText() 180 if ((notify_text = ippFindAttribute(event, "notify-text", in cupsNotifyText()
|
/external/u-boot/arch/arm/mach-tegra/ |
D | ivc.c | 282 ivc->notify(ivc); in tegra_ivc_read_advance() 327 ivc->notify(ivc); in tegra_ivc_write_advance() 340 * SYNC ACK reset counters; move to EST; notify 341 * SYNC SYNC reset counters; move to ACK; notify 342 * ACK EST move to EST; notify 343 * ACK ACK move to EST; notify 344 * ACK SYNC reset counters; move to ACK; notify 347 * EST SYNC reset counters; move to ACK; notify 394 * Notify remote end to observe state transition. in tegra_ivc_channel_notified() 396 ivc->notify(ivc); in tegra_ivc_channel_notified() [all …]
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
D | local_master.cc | 60 n.Notify(); in CreateSession() 74 n.Notify(); in ExtendSession() 88 n.Notify(); in PartialRunSetup() 103 n.Notify(); in RunStep() 125 n.Notify(); in CloseSession() 139 n.Notify(); in ListDevices() 153 n.Notify(); in Reset() 167 n.Notify(); in MakeCallable() 181 n.Notify(); in RunCallable() 194 n.Notify(); in ReleaseCallable()
|
/external/syzkaller/vendor/golang.org/x/net/context/ctxhttp/ |
D | ctxhttp_pre17.go | 124 // notifyingReader is an io.ReadCloser that closes the notify channel after 128 notify chan<- struct{} member 133 if err != nil && r.notify != nil { 134 close(r.notify) 135 r.notify = nil 142 if r.notify != nil { 143 close(r.notify) 144 r.notify = nil
|
/external/ims/rcs/rcsmanager/src/java/com/android/ims/ |
D | IRcsPresenceListener.aidl | 37 * 1> The presence service got terminated notify after submitted the SUBSCRIBE request. 40 * but it didn't get "terminated notify" in expries + T1 timer. 74 * It is called when it gets the "terminated notify" from network. 75 * The presence service will not receive notify for the request any more after it got 76 * "terminated notify" from network. So onFinish means the requestCapability or 88 * It is called when it is timeout to wait for the "terminated notify" from network.
|
/external/wayland/src/ |
D | wayland-server-core.h | 110 wl_notify_func_t notify); 160 wl_notify_func_t notify); 208 wl_notify_func_t notify); 246 * your_listener.notify = your_callback_method; 278 wl_notify_func_t notify; member 326 * \param notify The listener that is the target of this search 333 wl_signal_get(struct wl_signal *signal, wl_notify_func_t notify) in wl_signal_get() argument 338 if (l->notify == notify) in wl_signal_get() 357 l->notify(l, data); in wl_signal_emit() 467 wl_notify_func_t notify);
|
/external/ipsec-tools/src/racoon/ |
D | isakmp_inf.c | 330 isakmp_info_recv_n(iph1, notify, msgid, encrypted) in isakmp_info_recv_n() argument 332 struct isakmp_pl_n *notify; 342 type = ntohs(notify->type); 362 (struct isakmp_pl_ru *)notify, msgid); 367 (struct isakmp_pl_ru *)notify, msgid); 383 "fatal %s notify messsage, " 388 "fatal %s notify messsage, " 395 "unhandled notify message %s, " 404 if(notify->spi_size > 0) { 405 if (ntohs(notify->h.len) < sizeof(*notify) + notify->spi_size) { [all …]
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowNotificationManagerTest.java | 434 notificationManager.notify(1, notification1); in testNotify() 438 notificationManager.notify(31, notification2); in testNotify() 445 notificationManager.notify(1, notification1); in testNotifyReplaces() 447 notificationManager.notify(1, notification2); in testNotifyReplaces() 454 notificationManager.notify("a tag", 1, notification1); in testNotifyWithTag() 461 notificationManager.notify("a tag", 1, notification1); in notifyWithTag_shouldReturnNullForNullTag() 468 notificationManager.notify("a tag", 1, notification1); in notifyWithTag_shouldReturnNullForUnknownTag() 475 notificationManager.notify(1, notification1); in testCancel() 484 notificationManager.notify("a tag", 1, notification1); in testCancelWithTag() 494 notificationManager.notify(1, notification1); in testCancelAll() [all …]
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | buf_rendezvous_test.cc | 58 note.Notify(); in TEST_F() 100 note.Notify(); in TEST_F() 120 note.Notify(); in TEST_F() 152 cons_note.Notify(); in TEST_F() 157 prod_note.Notify(); in TEST_F() 181 cons_note.Notify(); in TEST_F() 186 prod_note.Notify(); in TEST_F()
|
/external/ims/rcs/rcsmanager/src/java/com/android/ims/internal/ |
D | IRcsPresence.aidl | 53 * 6. If the network returns "200 OK" then we can expect the presence service receives notify 54 * from network. If the presence service receives notify then it will broadcast the 55 * intent ACTION_PRESENCE_CHANGED. If the notify state is "terminated" then the 84 * 6. If the network returns "200 OK" then we can expect the presence service receives notify 85 * from network. If the presence service receives notify then it will broadcast the intent 86 * ACTION_PRESENCE_CHANGED. If the notify state is "terminated" then the listener.onFinish()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ExtendedContentHandler.java | 84 * This method is used to notify of a character event, but passing the data 92 * This method is used to notify of a character event, but passing the data 99 * This method is used to notify that an element has ended. Unlike the 113 * This method is used to notify that an element is starting. 129 * This method is used to notify of the start of an element 135 * This method is used to notify that a prefix mapping is to start, but 156 * This method is used to notify that a prefix maping is to start, which can 174 * Notify of an entity reference.
|
/external/google-fruit/examples/multibindings/ |
D | main.cpp | 25 virtual void notify() = 0; 32 void notify() override { in notify() function in Listener1 59 void notify() override { in notify() function in Listener2 79 listener->notify(); in main()
|
/external/wpa_supplicant_8/src/fst/ |
D | fst.h | 168 * on_group_created - Notify about FST group creation 174 * on_group_deleted - Notify about FST group deletion 179 * on_iface_added - Notify about interface addition 185 * on_iface_removed - Notify about interface removal 190 * on_session_added - Notify about FST session addition 196 * on_session_removed - Notify about FST session removal 201 * on_event - Notify about FST event
|
/external/skqp/src/compute/skc/platforms/cl_12/ |
D | surface_cl_12.c | 67 skc_surface_render_notify notify; member 188 // notify in skc_surface_render_complete() 189 if (render->notify != NULL) { in skc_surface_render_complete() 190 render->notify(render->impl->surface, in skc_surface_render_complete() 309 // notify anyone listening... in skc_surface_grid_pfn_execute() 334 skc_surface_render_notify notify, in skc_surface_pfn_render() argument 371 render->notify = notify; in skc_surface_pfn_render()
|