/external/grpc-grpc/src/core/lib/iomgr/ |
D | endpoint.cc | 25 void grpc_endpoint_read(grpc_endpoint* ep, grpc_slice_buffer* slices, in grpc_endpoint_read() 30 void grpc_endpoint_write(grpc_endpoint* ep, grpc_slice_buffer* slices, in grpc_endpoint_write() 35 void grpc_endpoint_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) { in grpc_endpoint_add_to_pollset() 39 void grpc_endpoint_add_to_pollset_set(grpc_endpoint* ep, in grpc_endpoint_add_to_pollset_set() 44 void grpc_endpoint_delete_from_pollset_set(grpc_endpoint* ep, in grpc_endpoint_delete_from_pollset_set() 49 void grpc_endpoint_shutdown(grpc_endpoint* ep, grpc_error* why) { in grpc_endpoint_shutdown() 53 void grpc_endpoint_destroy(grpc_endpoint* ep) { ep->vtable->destroy(ep); } in grpc_endpoint_destroy() 55 char* grpc_endpoint_get_peer(grpc_endpoint* ep) { in grpc_endpoint_get_peer() 59 int grpc_endpoint_get_fd(grpc_endpoint* ep) { return ep->vtable->get_fd(ep); } in grpc_endpoint_get_fd() 61 grpc_resource_user* grpc_endpoint_get_resource_user(grpc_endpoint* ep) { in grpc_endpoint_get_resource_user()
|
D | endpoint_cfstream.cc | 63 static void CFStreamFree(CFStreamEndpoint* ep) { in CFStreamFree() 73 #define EP_REF(ep, reason) CFStreamRef((ep), (reason), __FILE__, __LINE__) argument 74 #define EP_UNREF(ep, reason) CFStreamUnref((ep), (reason), __FILE__, __LINE__) argument 75 static void CFStreamUnref(CFStreamEndpoint* ep, const char* reason, in CFStreamUnref() 87 static void CFStreamRef(CFStreamEndpoint* ep, const char* reason, in CFStreamRef() 98 #define EP_REF(ep, reason) CFStreamRef((ep)) argument 99 #define EP_UNREF(ep, reason) CFStreamUnref((ep)) argument 100 static void CFStreamUnref(CFStreamEndpoint* ep) { in CFStreamUnref() 105 static void CFStreamRef(CFStreamEndpoint* ep) { gpr_ref(&ep->refcount); } in CFStreamRef() 109 CFStreamEndpoint* ep) { in CFStreamAnnotateError() [all …]
|
D | tcp_custom.cc | 195 static void endpoint_read(grpc_endpoint* ep, grpc_slice_buffer* read_slices, in endpoint_read() 223 static void endpoint_write(grpc_endpoint* ep, grpc_slice_buffer* write_slices, in endpoint_write() 261 static void endpoint_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) { in endpoint_add_to_pollset() 267 static void endpoint_add_to_pollset_set(grpc_endpoint* ep, in endpoint_add_to_pollset_set() 274 static void endpoint_delete_from_pollset_set(grpc_endpoint* ep, in endpoint_delete_from_pollset_set() 281 static void endpoint_shutdown(grpc_endpoint* ep, grpc_error* why) { in endpoint_shutdown() 311 static void endpoint_destroy(grpc_endpoint* ep) { in endpoint_destroy() 317 static char* endpoint_get_peer(grpc_endpoint* ep) { in endpoint_get_peer() 322 static grpc_resource_user* endpoint_get_resource_user(grpc_endpoint* ep) { in endpoint_get_resource_user() 327 static int endpoint_get_fd(grpc_endpoint* ep) { return -1; } in endpoint_get_fd()
|
D | tcp_windows.cc | 212 static void win_read(grpc_endpoint* ep, grpc_slice_buffer* read_slices, in win_read() 298 static void win_write(grpc_endpoint* ep, grpc_slice_buffer* slices, in win_write() 373 static void win_add_to_pollset(grpc_endpoint* ep, grpc_pollset* ps) { in win_add_to_pollset() 380 static void win_add_to_pollset_set(grpc_endpoint* ep, grpc_pollset_set* pss) { in win_add_to_pollset_set() 387 static void win_delete_from_pollset_set(grpc_endpoint* ep, in win_delete_from_pollset_set() 396 static void win_shutdown(grpc_endpoint* ep, grpc_error* why) { in win_shutdown() 412 static void win_destroy(grpc_endpoint* ep) { in win_destroy() 418 static char* win_get_peer(grpc_endpoint* ep) { in win_get_peer() 423 static grpc_resource_user* win_get_resource_user(grpc_endpoint* ep) { in win_get_resource_user() 428 static int win_get_fd(grpc_endpoint* ep) { return -1; } in win_get_fd()
|
/external/grpc-grpc/src/core/lib/security/transport/ |
D | secure_endpoint.cc | 69 secure_endpoint* ep = secure_ep; in destroy() local 83 #define SECURE_ENDPOINT_UNREF(ep, reason) \ argument 85 #define SECURE_ENDPOINT_REF(ep, reason) \ argument 87 static void secure_endpoint_unref(secure_endpoint* ep, const char* reason, in secure_endpoint_unref() 100 static void secure_endpoint_ref(secure_endpoint* ep, const char* reason, in secure_endpoint_ref() 111 #define SECURE_ENDPOINT_UNREF(ep, reason) secure_endpoint_unref((ep)) argument 112 #define SECURE_ENDPOINT_REF(ep, reason) secure_endpoint_ref((ep)) argument 113 static void secure_endpoint_unref(secure_endpoint* ep) { in secure_endpoint_unref() 119 static void secure_endpoint_ref(secure_endpoint* ep) { gpr_ref(&ep->ref); } in secure_endpoint_ref() 122 static void flush_read_staging_buffer(secure_endpoint* ep, uint8_t** cur, in flush_read_staging_buffer() [all …]
|
/external/grpc-grpc/test/core/util/ |
D | mock_endpoint.cc | 43 static void me_read(grpc_endpoint* ep, grpc_slice_buffer* slices, in me_read() 57 static void me_write(grpc_endpoint* ep, grpc_slice_buffer* slices, in me_write() 66 static void me_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) {} in me_add_to_pollset() 68 static void me_add_to_pollset_set(grpc_endpoint* ep, in me_add_to_pollset_set() 71 static void me_delete_from_pollset_set(grpc_endpoint* ep, in me_delete_from_pollset_set() 74 static void me_shutdown(grpc_endpoint* ep, grpc_error* why) { in me_shutdown() 88 static void me_destroy(grpc_endpoint* ep) { in me_destroy() 95 static char* me_get_peer(grpc_endpoint* ep) { in me_get_peer() 99 static grpc_resource_user* me_get_resource_user(grpc_endpoint* ep) { in me_get_resource_user() 104 static int me_get_fd(grpc_endpoint* ep) { return -1; } in me_get_fd() [all …]
|
D | trickle_endpoint.cc | 49 static void te_read(grpc_endpoint* ep, grpc_slice_buffer* slices, in te_read() 64 static void te_write(grpc_endpoint* ep, grpc_slice_buffer* slices, in te_write() 81 static void te_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) { in te_add_to_pollset() 86 static void te_add_to_pollset_set(grpc_endpoint* ep, in te_add_to_pollset_set() 92 static void te_delete_from_pollset_set(grpc_endpoint* ep, in te_delete_from_pollset_set() 98 static void te_shutdown(grpc_endpoint* ep, grpc_error* why) { in te_shutdown() 109 static void te_destroy(grpc_endpoint* ep) { in te_destroy() 119 static grpc_resource_user* te_get_resource_user(grpc_endpoint* ep) { in te_get_resource_user() 124 static char* te_get_peer(grpc_endpoint* ep) { in te_get_peer() 129 static int te_get_fd(grpc_endpoint* ep) { in te_get_fd() [all …]
|
D | passthru_endpoint.cc | 56 static void me_read(grpc_endpoint* ep, grpc_slice_buffer* slices, in me_read() 78 static void me_write(grpc_endpoint* ep, grpc_slice_buffer* slices, in me_write() 102 static void me_add_to_pollset(grpc_endpoint* ep, grpc_pollset* pollset) {} in me_add_to_pollset() 104 static void me_add_to_pollset_set(grpc_endpoint* ep, in me_add_to_pollset_set() 107 static void me_delete_from_pollset_set(grpc_endpoint* ep, in me_delete_from_pollset_set() 110 static void me_shutdown(grpc_endpoint* ep, grpc_error* why) { in me_shutdown() 132 static void me_destroy(grpc_endpoint* ep) { in me_destroy() 149 static char* me_get_peer(grpc_endpoint* ep) { in me_get_peer() 156 static int me_get_fd(grpc_endpoint* ep) { return -1; } in me_get_fd() 158 static grpc_resource_user* me_get_resource_user(grpc_endpoint* ep) { in me_get_resource_user()
|
/external/u-boot/board/ti/common/ |
D | board_detect.c | 83 uchar *ep, int epsize) in ti_i2c_eeprom_read() 123 u32 header, u32 size, uint8_t *ep) in ti_i2c_eeprom_get() 177 struct ti_common_eeprom *ep; in ti_i2c_eeprom_am_set() local 203 struct ti_common_eeprom *ep; in ti_i2c_eeprom_am_get() local 249 struct ti_common_eeprom *ep; in ti_i2c_eeprom_dra7_get() local 293 struct ti_common_eeprom *ep = TI_EEPROM_DATA; in board_ti_is() local 302 struct ti_common_eeprom *ep = TI_EEPROM_DATA; in board_ti_rev_is() local 314 struct ti_common_eeprom *ep = TI_EEPROM_DATA; in board_ti_get_rev() local 322 struct ti_common_eeprom *ep = TI_EEPROM_DATA; in board_ti_get_config() local 330 struct ti_common_eeprom *ep = TI_EEPROM_DATA; in board_ti_get_name() local [all …]
|
/external/u-boot/drivers/usb/gadget/ |
D | dwc2_udc_otg_xfer_dma.c | 92 static int setdma_rx(struct dwc2_ep *ep, struct dwc2_request *req) in setdma_rx() 134 static int setdma_tx(struct dwc2_ep *ep, struct dwc2_request *req) in setdma_tx() 194 struct dwc2_ep *ep = &dev->ep[ep_num]; in complete_rx() local 267 struct dwc2_ep *ep = &dev->ep[ep_num]; in complete_tx() local 343 struct dwc2_ep *ep = &dev->ep[ep_num]; in dwc2_udc_check_tx_queue() local 589 struct dwc2_ep *ep; in dwc2_queue() local 686 static int write_fifo_ep0(struct dwc2_ep *ep, struct dwc2_request *req) in write_fifo_ep0() 724 static int dwc2_fifo_read(struct dwc2_ep *ep, u32 *cp, int max) in dwc2_fifo_read() 757 static inline void dwc2_udc_ep0_set_stall(struct dwc2_ep *ep) in dwc2_udc_ep0_set_stall() 788 struct dwc2_ep *ep = &dev->ep[0]; in dwc2_ep0_read() local [all …]
|
D | atmel_usba_udc.c | 29 static void next_fifo_transaction(struct usba_ep *ep, struct usba_request *req) in next_fifo_transaction() 51 static void submit_request(struct usba_ep *ep, struct usba_request *req) in submit_request() 69 static void submit_next_request(struct usba_ep *ep) in submit_next_request() 83 static void send_status(struct usba_udc *udc, struct usba_ep *ep) in send_status() 90 static void receive_data(struct usba_ep *ep) in receive_data() 146 request_complete(struct usba_ep *ep, struct usba_request *req, int status) in request_complete() 158 request_complete_list(struct usba_ep *ep, struct list_head *list, int status) in request_complete_list() 171 struct usba_ep *ep = to_usba_ep(_ep); in usba_ep_enable() local 273 struct usba_ep *ep = to_usba_ep(_ep); in usba_ep_disable() local 339 struct usba_ep *ep = to_usba_ep(_ep); in usba_ep_queue() local [all …]
|
D | f_rockusb.c | 137 static void rockusb_complete(struct usb_ep *ep, struct usb_request *req) in rockusb_complete() 221 static struct usb_request *rockusb_start_ep(struct usb_ep *ep) in rockusb_start_ep() 391 static unsigned int rx_bytes_expected(struct usb_ep *ep) in rx_bytes_expected() 411 static void rx_handler_dl_image(struct usb_ep *ep, struct usb_request *req) in rx_handler_dl_image() 484 static void cb_test_unit_ready(struct usb_ep *ep, struct usb_request *req) in cb_test_unit_ready() 495 static void cb_read_storage_id(struct usb_ep *ep, struct usb_request *req) in cb_read_storage_id() 508 static void cb_write_lba(struct usb_ep *ep, struct usb_request *req) in cb_write_lba() 540 static void compl_do_reset(struct usb_ep *ep, struct usb_request *req) in compl_do_reset() 548 static void cb_reboot(struct usb_ep *ep, struct usb_request *req) in cb_reboot() 561 static void cb_not_support(struct usb_ep *ep, struct usb_request *req) in cb_not_support() [all …]
|
D | dwc2_udc_otg.c | 191 struct dwc2_ep *ep = &dev->ep[i]; in udc_reinit() local 305 static void done(struct dwc2_ep *ep, struct dwc2_request *req, int status) in done() 356 static void nuke(struct dwc2_ep *ep, int status) in nuke() 381 struct dwc2_ep *ep = &dev->ep[i]; in stop_activity() local 544 struct dwc2_ep *ep; in dwc2_ep_enable() local 609 struct dwc2_ep *ep; in dwc2_ep_disable() local 635 static struct usb_request *dwc2_alloc_request(struct usb_ep *ep, in dwc2_alloc_request() 652 static void dwc2_free_request(struct usb_ep *ep, struct usb_request *_req) in dwc2_free_request() 666 struct dwc2_ep *ep; in dwc2_dequeue() local 700 struct dwc2_ep *ep; in dwc2_fifo_status() local [all …]
|
D | at91_udc.c | 71 static void done(struct at91_ep *ep, struct at91_request *req, int status) in done() 122 static int read_fifo (struct at91_ep *ep, struct at91_request *req) in read_fifo() 197 static int write_fifo(struct at91_ep *ep, struct at91_request *req) in write_fifo() 265 static void nuke(struct at91_ep *ep, int status) in nuke() 286 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_enable() local 363 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_disable() local 420 struct at91_ep *ep; in at91_ep_queue() local 518 struct at91_ep *ep; in at91_ep_dequeue() local 545 struct at91_ep *ep = container_of(_ep, struct at91_ep, ep); in at91_ep_set_halt() local 642 struct at91_ep *ep = &udc->ep[i]; in udc_reinit() local [all …]
|
D | epautoconf.c | 48 struct usb_ep *ep, in ep_matches() 176 struct usb_ep *ep; in find_ep() local 220 struct usb_ep *ep = NULL; in usb_ep_autoconfig() local 306 struct usb_ep *ep; in usb_ep_autoconfig_reset() local
|
D | pxa25x_udc.c | 297 struct pxa25x_ep *ep; in pxa25x_ep_enable() local 349 struct pxa25x_ep *ep; in pxa25x_ep_disable() local 416 static void done(struct pxa25x_ep *ep, struct pxa25x_request *req, int status) in done() 472 write_fifo(struct pxa25x_ep *ep, struct pxa25x_request *req) in write_fifo() 544 write_ep0_fifo(struct pxa25x_ep *ep, struct pxa25x_request *req) in write_ep0_fifo() 605 read_fifo(struct pxa25x_ep *ep, struct pxa25x_request *req) in read_fifo() 684 read_ep0_fifo(struct pxa25x_ep *ep, struct pxa25x_request *req) in read_ep0_fifo() 727 struct pxa25x_ep *ep; in pxa25x_ep_queue() local 840 static void nuke(struct pxa25x_ep *ep, int status) in nuke() 859 struct pxa25x_ep *ep; in pxa25x_ep_dequeue() local [all …]
|
D | f_fastboot.c | 140 static void fastboot_complete(struct usb_ep *ep, struct usb_request *req) in fastboot_complete() 218 static struct usb_request *fastboot_start_ep(struct usb_ep *ep) in fastboot_start_ep() 343 static void compl_do_reset(struct usb_ep *ep, struct usb_request *req) in compl_do_reset() 348 static unsigned int rx_bytes_expected(struct usb_ep *ep) in rx_bytes_expected() 372 static void rx_handler_dl_image(struct usb_ep *ep, struct usb_request *req) in rx_handler_dl_image() 408 static void do_exit_on_complete(struct usb_ep *ep, struct usb_request *req) in do_exit_on_complete() 413 static void do_bootm_on_complete(struct usb_ep *ep, struct usb_request *req) in do_bootm_on_complete() 419 static void rx_handler_command(struct usb_ep *ep, struct usb_request *req) in rx_handler_command()
|
D | fotg210.c | 31 struct usb_ep ep; member 45 struct fotg210_ep *ep; member 56 struct fotg210_ep ep[1 + CFG_NUM_ENDPOINTS]; member 78 int ep = ep_addr & USB_ENDPOINT_NUMBER_MASK; in ep_reset() local 208 static int fotg210_dma(struct fotg210_ep *ep, struct fotg210_request *req) in fotg210_dma() 469 struct fotg210_ep *ep = chip->ep + ep_id; in fotg210_recv() local 503 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_enable() local 547 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_disable() local 585 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_queue() local 644 struct fotg210_ep *ep = container_of(_ep, struct fotg210_ep, ep); in fotg210_ep_dequeue() local [all …]
|
/external/tcpdump/ |
D | print-ahcp.c | 101 ahcp_time_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_time_print() 129 ahcp_seconds_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_seconds_print() 147 ahcp_ipv6_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv6_addresses_print() 171 ahcp_ipv4_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv4_addresses_print() 195 ahcp_ipv6_prefixes_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv6_prefixes_print() 219 ahcp_ipv4_prefixes_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv4_prefixes_print() 262 ahcp1_options_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp1_options_print() 303 ahcp1_body_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp1_body_print() 350 const u_char *ep = cp + len; in ahcp_print() local
|
D | print-aoe.c | 146 const u_char *ep = cp + len; in aoev1_issue_print() local 210 const u_char *ep = cp + len; in aoev1_query_print() local 259 const u_char *ep = cp + len; in aoev1_mac_print() local 310 const u_char *ep = cp + len; in aoev1_reserve_print() local 346 const u_char *ep = cp + len; in aoev1_print() local 403 const u_char *ep = cp + len; in aoe_print() local
|
D | print-openflow-1.0.c | 739 const u_char *cp, const u_char *ep, const u_int len) in of10_data_print() 757 const u_char *cp, const u_char *ep, const u_int len) in of10_bsn_message_print() 962 const u_char *cp, const u_char *ep, const u_int len) in of10_bsn_actions_print() 1036 const u_char *cp, const u_char *ep, const u_int len) in of10_vendor_action_print() 1065 const u_char *cp, const u_char *ep, const u_int len) in of10_vendor_message_print() 1095 const u_char *cp, const u_char *ep, const u_int len) in of10_vendor_data_print() 1120 const u_char *cp, const u_char *ep, const u_int len) in of10_packet_data_print() 1143 const u_char *cp, const u_char *ep, u_int len) in of10_phy_ports_print() 1218 const u_char *cp, const u_char *ep, u_int len) in of10_queue_props_print() 1294 const u_char *cp, const u_char *ep, u_int len) in of10_queues_print() [all …]
|
D | print-dvmrp.c | 72 register const u_char *ep; in dvmrp_print() local 164 register const u_char *bp, register const u_char *ep, in print_report() 222 register const u_char *bp, register const u_char *ep, in print_probe() 253 register const u_char *bp, register const u_char *ep, in print_neighbors() 285 register const u_char *bp, register const u_char *ep, in print_neighbors2()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/ |
D | math.cpp | 23 [](std::exception_ptr ep){ in __anon97cb0d520402() 51 [](std::exception_ptr ep){ in __anon97cb0d520902() 81 [](std::exception_ptr ep){ in __anon97cb0d520e02() 109 [](std::exception_ptr ep){ in __anon97cb0d521302() 128 [](std::exception_ptr ep){ in __anon97cb0d521602() 155 [](std::exception_ptr ep){ in __anon97cb0d521b02() 174 [](std::exception_ptr ep){ in __anon97cb0d521e02() 201 [](std::exception_ptr ep){ in __anon97cb0d522302() 220 [](std::exception_ptr ep){ in __anon97cb0d522602() 247 [](std::exception_ptr ep){ in __anon97cb0d522b02() [all …]
|
D | on_error_resume_next.cpp | 11 on_error_resume_next([](std::exception_ptr ep){ in __anon66fcd11c0102() 18 [](std::exception_ptr ep){ in __anon66fcd11c0302()
|
/external/python/cpython2/Objects/ |
D | dictobject.c | 327 register PyDictEntry *ep; in lookdict() local 415 register PyDictEntry *ep; in lookdict_string() local 486 PyDictEntry *ep; in _PyDict_MaybeUntrack() local 511 PyDictEntry *ep, PyObject *value) in insertdict_by_entry() 547 register PyDictEntry *ep; in insertdict() local 575 register PyDictEntry *ep; in insertdict_clean() local 601 PyDictEntry *oldtable, *newtable, *ep; in dictresize() local 712 PyDictEntry *ep; in PyDict_GetItem() local 761 PyDictEntry *ep; in _PyDict_GetItemWithError() local 784 long hash, PyDictEntry *ep, PyObject *value) in dict_set_item_by_hash_or_entry() [all …]
|