/third_party/openssl/crypto/x509/ |
D | x509_req.c | 63 EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req) in X509_REQ_get_pubkey() 70 EVP_PKEY *X509_REQ_get0_pubkey(X509_REQ *req) in X509_REQ_get0_pubkey() 77 X509_PUBKEY *X509_REQ_get_X509_PUBKEY(X509_REQ *req) in X509_REQ_get_X509_PUBKEY() 170 int X509_REQ_add_extensions_nid(X509_REQ *req, in X509_REQ_add_extensions_nid() 188 int X509_REQ_add_extensions(X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts) in X509_REQ_add_extensions() 195 int X509_REQ_get_attr_count(const X509_REQ *req) in X509_REQ_get_attr_count() 200 int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid, int lastpos) in X509_REQ_get_attr_by_NID() 205 int X509_REQ_get_attr_by_OBJ(const X509_REQ *req, const ASN1_OBJECT *obj, in X509_REQ_get_attr_by_OBJ() 211 X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc) in X509_REQ_get_attr() 216 X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc) in X509_REQ_delete_attr() [all …]
|
/third_party/libuv/src/win/ |
D | req-inl.h | 31 #define SET_REQ_STATUS(req, status) \ argument 34 #define SET_REQ_ERROR(req, error) \ argument 40 #define SET_REQ_SUCCESS(req) \ argument 43 #define GET_REQ_STATUS(req) \ argument 46 #define REQ_SUCCESS(req) \ argument 49 #define GET_REQ_ERROR(req) \ argument 52 #define GET_REQ_SOCK_ERROR(req) \ argument 56 #define REGISTER_HANDLE_REQ(loop, handle, req) \ argument 62 #define UNREGISTER_HANDLE_REQ(loop, handle, req) \ argument 76 #define POST_COMPLETION_FOR_REQ(loop, req) \ argument [all …]
|
D | fs.c | 70 #define SET_REQ_RESULT(req, result_value) \ argument 76 #define SET_REQ_WIN32_ERROR(req, sys_errno) \ argument 82 #define SET_REQ_UV_ERROR(req, uv_errno, sys_errno) \ argument 88 #define VERIFY_FD(fd, req) \ argument 145 INLINE static int fs__capture_path(uv_fs_t* req, const char* path, in fs__capture_path() 244 INLINE static void uv__fs_req_init(uv_loop_t* loop, uv_fs_t* req, in uv__fs_req_init() 444 void fs__open(uv_fs_t* req) { in fs__open() 699 void fs__close(uv_fs_t* req) { in fs__close() 749 void fs__read_filemap(uv_fs_t* req, struct uv__fd_info_s* fd_info) { in fs__read_filemap() 846 void fs__read(uv_fs_t* req) { in fs__read() [all …]
|
/third_party/ntfs-3g/libfuse-lite/ |
D | fuse_lowlevel.c | 124 static void list_init_req(struct fuse_req *req) in list_init_req() 130 static void list_del_req(struct fuse_req *req) in list_del_req() 138 static void list_add_req(struct fuse_req *req, struct fuse_req *next) in list_add_req() 147 static void destroy_req(fuse_req_t req) in destroy_req() 153 static void free_req(fuse_req_t req) in free_req() 171 static int send_reply_iov(fuse_req_t req, int error, struct iovec *iov, in send_reply_iov() 198 static int send_reply(fuse_req_t req, int error, const void *arg, in send_reply() 257 size_t fuse_add_direntry(fuse_req_t req, char *buf, size_t bufsize, in fuse_add_direntry() 282 static int send_reply_ok(fuse_req_t req, const void *arg, size_t argsize) in send_reply_ok() 287 int fuse_reply_err(fuse_req_t req, int err) in fuse_reply_err() [all …]
|
/third_party/libuv/src/unix/ |
D | fs.c | 202 static ssize_t uv__fs_fsync(uv_fs_t* req) { in uv__fs_fsync() 226 static ssize_t uv__fs_fdatasync(uv_fs_t* req) { in uv__fs_fdatasync() 268 static ssize_t uv__fs_futime(uv_fs_t* req) { in uv__fs_futime() 307 static ssize_t uv__fs_mkdtemp(uv_fs_t* req) { in uv__fs_mkdtemp() 331 static int uv__fs_mkstemp(uv_fs_t* req) { in uv__fs_mkstemp() 402 static ssize_t uv__fs_open(uv_fs_t* req) { in uv__fs_open() 481 static ssize_t uv__fs_read(uv_fs_t* req) { in uv__fs_read() 568 static ssize_t uv__fs_scandir(uv_fs_t* req) { in uv__fs_scandir() 593 static int uv__fs_opendir(uv_fs_t* req) { in uv__fs_opendir() 613 static int uv__fs_readdir(uv_fs_t* req) { in uv__fs_readdir() [all …]
|
/third_party/libuv/test/ |
D | test-fs.c | 163 uv_fs_t req; in check_permission() local 185 static void dummy_cb(uv_fs_t* req) { in dummy_cb() 191 static void link_cb(uv_fs_t* req) { in link_cb() 199 static void symlink_cb(uv_fs_t* req) { in symlink_cb() 206 static void readlink_cb(uv_fs_t* req) { in readlink_cb() 215 static void realpath_cb(uv_fs_t* req) { in realpath_cb() 244 static void access_cb(uv_fs_t* req) { in access_cb() 251 static void fchmod_cb(uv_fs_t* req) { in fchmod_cb() 260 static void chmod_cb(uv_fs_t* req) { in chmod_cb() 269 static void unlink_cb(uv_fs_t* req) { in unlink_cb() [all …]
|
D | test-fs-readdir.c | 37 uv_fs_t req; in cleanup_test_files() local 49 static void empty_closedir_cb(uv_fs_t* req) { in empty_closedir_cb() 57 static void empty_readdir_cb(uv_fs_t* req) { in empty_readdir_cb() 73 static void empty_opendir_cb(uv_fs_t* req) { in empty_opendir_cb() 170 static void non_existing_opendir_cb(uv_fs_t* req) { in non_existing_opendir_cb() 222 static void file_opendir_cb(uv_fs_t* req) { in file_opendir_cb() 275 static void non_empty_closedir_cb(uv_fs_t* req) { in non_empty_closedir_cb() 282 static void non_empty_readdir_cb(uv_fs_t* req) { in non_empty_readdir_cb() 322 static void non_empty_opendir_cb(uv_fs_t* req) { in non_empty_opendir_cb()
|
D | test-threadpool-cancel.c | 53 static void work_cb(uv_work_t* req) { in work_cb() 58 static void done_cb(uv_work_t* req, int status) { in done_cb() 90 static void fs_cb(uv_fs_t* req) { in fs_cb() 97 static void getaddrinfo_cb(uv_getaddrinfo_t* req, in getaddrinfo_cb() 116 static void work2_cb(uv_work_t* req) { in work2_cb() 121 static void done2_cb(uv_work_t* req, int status) { in done2_cb() 129 uv_req_t* req; in timer_cb() local 145 static void nop_done_cb(uv_work_t* req, int status) { in nop_done_cb() 151 static void nop_random_cb(uv_random_t* req, int status, void* buf, size_t len) { in nop_random_cb() 234 struct random_info req; in TEST_IMPL() local [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/ |
D | http_server.c | 44 struct http_request *req = cookie; in http_request_cb() local 64 struct http_request *req; in http_request_init() local 91 void http_request_deinit(struct http_request *req) in http_request_deinit() 121 static void http_request_free_all(struct http_request *req) in http_request_free_all() 132 void http_request_send(struct http_request *req, struct wpabuf *resp) in http_request_send() 155 void http_request_send_and_deinit(struct http_request *req, in http_request_send_and_deinit() 163 enum httpread_hdr_type http_request_get_type(struct http_request *req) in http_request_get_type() 169 char * http_request_get_uri(struct http_request *req) in http_request_get_uri() 175 char * http_request_get_hdr(struct http_request *req) in http_request_get_hdr() 181 char * http_request_get_data(struct http_request *req) in http_request_get_data() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/ |
D | http_server.c | 44 struct http_request *req = cookie; in http_request_cb() local 64 struct http_request *req; in http_request_init() local 91 void http_request_deinit(struct http_request *req) in http_request_deinit() 121 static void http_request_free_all(struct http_request *req) in http_request_free_all() 132 void http_request_send(struct http_request *req, struct wpabuf *resp) in http_request_send() 155 void http_request_send_and_deinit(struct http_request *req, in http_request_send_and_deinit() 163 enum httpread_hdr_type http_request_get_type(struct http_request *req) in http_request_get_type() 169 char * http_request_get_uri(struct http_request *req) in http_request_get_uri() 175 char * http_request_get_hdr(struct http_request *req) in http_request_get_hdr() 181 char * http_request_get_data(struct http_request *req) in http_request_get_data() [all …]
|
/third_party/musl/Benchmark/musl/ |
D | libc_time.cpp | 25 struct timespec req, rem; in Bm_function_Nanosleep_0ns() local 34 struct timespec req, rem; in Bm_function_Nanosleep_10ns() local 43 struct timespec req, rem; in Bm_function_Nanosleep_100ns() local 59 struct timespec req, rem; in Bm_function_Clock_nanosleep_realtime() local 68 struct timespec req, rem; in Bm_function_Clock_nanosleep_realtime_raw() local 77 struct timespec req, rem; in Bm_function_Clock_nanosleep_realtime_coarse() local 86 struct timespec req, rem; in Bm_function_Clock_nanosleep_monotonic() local 94 struct timespec req, rem; in Bm_function_Clock_nanosleep_monotonic_coarse() local 102 struct timespec req, rem; in Bm_function_Clock_nanosleep_monotonic_raw() local 110 struct timespec req, rem; in Bm_function_Clock_nanosleep_boottime() local
|
/third_party/libfuse/lib/ |
D | fuse_lowlevel.c | 101 static void list_init_req(struct fuse_req *req) in list_init_req() 107 static void list_del_req(struct fuse_req *req) in list_del_req() 115 static void list_add_req(struct fuse_req *req, struct fuse_req *next) in list_add_req() 124 static void destroy_req(fuse_req_t req) in destroy_req() 131 void fuse_free_req(fuse_req_t req) in fuse_free_req() 150 struct fuse_req *req; in fuse_ll_alloc_req() local 211 int fuse_send_reply_iov_nofree(fuse_req_t req, int error, struct iovec *iov, 235 static int send_reply_iov(fuse_req_t req, int error, struct iovec *iov, 245 static int send_reply(fuse_req_t req, int error, const void *arg, 258 int fuse_reply_iov(fuse_req_t req, const struct iovec *iov, int count) [all …]
|
/third_party/libfuse/example/ |
D | passthrough_ll.c | 145 static struct lo_data *lo_data(fuse_req_t req) in lo_data() 150 static struct lo_inode *lo_inode(fuse_req_t req, fuse_ino_t ino) in lo_inode() 158 static int lo_fd(fuse_req_t req, fuse_ino_t ino) in lo_fd() 163 static bool lo_debug(fuse_req_t req) in lo_debug() 200 static void lo_getattr(fuse_req_t req, fuse_ino_t ino, in lo_getattr() 216 static void lo_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr, in lo_setattr() 309 static int lo_do_lookup(fuse_req_t req, fuse_ino_t parent, const char *name, in lo_do_lookup() 371 static void lo_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in lo_lookup() 387 static void lo_mknod_symlink(fuse_req_t req, fuse_ino_t parent, in lo_mknod_symlink() 417 static void lo_mknod(fuse_req_t req, fuse_ino_t parent, in lo_mknod() [all …]
|
D | hello_ll.c | 56 static void hello_ll_getattr(fuse_req_t req, fuse_ino_t ino, in hello_ll_getattr() 70 static void hello_ll_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) in hello_ll_lookup() 92 static void dirbuf_add(fuse_req_t req, struct dirbuf *b, const char *name, in dirbuf_add() 107 static int reply_buf_limited(fuse_req_t req, const char *buf, size_t bufsize, in reply_buf_limited() 117 static void hello_ll_readdir(fuse_req_t req, fuse_ino_t ino, size_t size, in hello_ll_readdir() 136 static void hello_ll_open(fuse_req_t req, fuse_ino_t ino, in hello_ll_open() 147 static void hello_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size, in hello_ll_read() 156 static void hello_ll_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name, in hello_ll_getxattr() 172 static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name, in hello_ll_setxattr() 191 static void hello_ll_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name) in hello_ll_removexattr()
|
D | passthrough_hp.cc | 217 static void sfs_getattr(fuse_req_t req, fuse_ino_t ino, fuse_file_info *fi) { in sfs_getattr() 231 static void do_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr, in do_setattr() 307 static void sfs_setattr(fuse_req_t req, fuse_ino_t ino, struct stat *attr, in sfs_setattr() 406 static void sfs_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) { in sfs_lookup() 424 static void mknod_symlink(fuse_req_t req, fuse_ino_t parent, in mknod_symlink() 456 static void sfs_mknod(fuse_req_t req, fuse_ino_t parent, const char *name, in sfs_mknod() 462 static void sfs_mkdir(fuse_req_t req, fuse_ino_t parent, const char *name, in sfs_mkdir() 468 static void sfs_symlink(fuse_req_t req, const char *link, fuse_ino_t parent, in sfs_symlink() 474 static void sfs_link(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent, in sfs_link() 511 static void sfs_rmdir(fuse_req_t req, fuse_ino_t parent, const char *name) { in sfs_rmdir() [all …]
|
/third_party/libuv/src/ |
D | uv-data-getter-setters.c | 65 uv_req_type uv_req_get_type(const uv_req_t* req) { in uv_req_get_type() 69 void* uv_req_get_data(const uv_req_t* req) { in uv_req_get_data() 73 void uv_req_set_data(uv_req_t* req, void* data) { in uv_req_set_data() 93 uv_fs_type uv_fs_get_type(const uv_fs_t* req) { in uv_fs_get_type() 97 ssize_t uv_fs_get_result(const uv_fs_t* req) { in uv_fs_get_result() 101 void* uv_fs_get_ptr(const uv_fs_t* req) { in uv_fs_get_ptr() 105 const char* uv_fs_get_path(const uv_fs_t* req) { in uv_fs_get_path() 109 uv_stat_t* uv_fs_get_statbuf(uv_fs_t* req) { in uv_fs_get_statbuf()
|
/third_party/libdrm/nouveau/ |
D | abi16.c | 39 struct drm_nouveau_channel_alloc req = { in abi16_chan_nv04() local 62 struct drm_nouveau_channel_alloc req = {}; in abi16_chan_nvc0() local 83 struct drm_nouveau_channel_alloc req = {}; in abi16_chan_nve0() local 109 struct drm_nouveau_grobj_alloc req = { in abi16_engobj() local 151 struct drm_nouveau_notifierobj_alloc req = { in abi16_ntfy() local 222 struct drm_nouveau_channel_free req; in abi16_delete() local 227 struct drm_nouveau_gpuobj_free req; in abi16_delete() local 312 struct drm_nouveau_gem_new req = {}; in abi16_bo_init() local
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
D | Server.cpp | 73 session->registerHandler([](const dap::DisconnectRequest &req) { in Impl() 78 session->registerHandler([&](const dap::InitializeRequest &req) { in Impl() 94 session->registerHandler([](const dap::SetExceptionBreakpointsRequest &req) { in Impl() 101 [this](const dap::SetFunctionBreakpointsRequest &req) { in Impl() 130 -> dap::ResponseOrError<dap::SetBreakpointsResponse> { in Impl() 186 session->registerHandler([this](const dap::ThreadsRequest &req) { in Impl() 215 -> dap::ResponseOrError<dap::StackTraceResponse> { in Impl() 249 -> dap::ResponseOrError<dap::ScopesResponse> { in Impl() 269 -> dap::ResponseOrError<dap::VariablesResponse> { in Impl() 299 -> dap::ResponseOrError<dap::SourceResponse> { in Impl() [all …]
|
/third_party/node/deps/npm/node_modules/agent-base/test/ |
D | test.js | 17 var PassthroughAgent = Agent(function(req, opts) { argument 29 MyAgent.prototype.callback = function(req, opts, fn) { argument 56 agent.callback = function(req, opts, fn) { argument 125 var agent = new Agent(function(req, opts, fn) { argument 139 var agent = new Agent(function(req, opts, fn) { argument 173 agent: new Agent(function(req, opts, fn) { argument 187 agent: new Agent(function(req, opts, fn) { argument 240 var agent = new Agent(function(req, opts, fn) { argument 248 server.once('request', function(req, res) { argument 268 var agent = new Agent(function(req, opts) { argument [all …]
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/test/ |
D | test.js | 17 var PassthroughAgent = Agent(function(req, opts) { argument 29 MyAgent.prototype.callback = function(req, opts, fn) { argument 56 agent.callback = function(req, opts, fn) { argument 125 var agent = new Agent(function(req, opts, fn) { argument 139 var agent = new Agent(function(req, opts, fn) { argument 173 agent: new Agent(function(req, opts, fn) { argument 187 agent: new Agent(function(req, opts, fn) { argument 239 var agent = new Agent(function(req, opts, fn) { argument 247 server.once('request', function(req, res) { argument 267 var agent = new Agent(function(req, opts) { argument [all …]
|
/third_party/FreeBSD/sys/dev/usb/ |
D | usb_request.c | 107 usbd_get_debug_bits(struct usb_device *udev, struct usb_device_request *req, in usbd_get_debug_bits() 196 struct usb_device_request req; in usb_do_clear_stall_callback() local 374 struct usb_device_request *req, void *data, uint16_t flags, in usbd_do_request_flags() 709 struct usb_device_request *req, void *data, uint16_t flags, in usbd_do_request_proc() 971 struct usb_device_request req; in usbd_req_get_desc() local 1179 struct usb_device_request req; in usbd_req_get_descriptor_ptr() local 1362 struct usb_device_request req; in usbd_req_get_alt_interface_no() local 1388 struct usb_device_request req; in usbd_req_set_alt_interface_no() local 1425 struct usb_device_request req; in usbd_req_get_device_status() local 1446 struct usb_device_request req; in usbd_req_get_hub_descriptor() local [all …]
|
/third_party/libdrm/freedreno/msm/ |
D | msm_bo.c | 35 struct drm_msm_gem_info req = { in bo_allocate() local 69 struct drm_msm_gem_cpu_prep req = { in msm_bo_cpu_prep() local 81 struct drm_msm_gem_cpu_fini req = { in msm_bo_cpu_fini() local 90 struct drm_msm_gem_madvise req = { in msm_bo_madvise() local 109 struct drm_msm_gem_info req = { in msm_bo_iova() local 139 struct drm_msm_gem_new req = { in msm_bo_new_handle() local
|
/third_party/mesa3d/src/freedreno/drm/msm/ |
D | msm_bo.c | 34 struct drm_msm_gem_info req = { in bo_allocate() local 71 struct drm_msm_gem_cpu_prep req = { in msm_bo_cpu_prep() local 84 struct drm_msm_gem_cpu_fini req = { in msm_bo_cpu_fini() local 94 struct drm_msm_gem_madvise req = { in msm_bo_madvise() local 115 struct drm_msm_gem_info req = { in msm_bo_iova() local 131 struct drm_msm_gem_info req = { in msm_bo_set_name() local 170 struct drm_msm_gem_new req = { in new_handle() local
|
/third_party/typescript/tests/baselines/reference/ |
D | importCallExpressionAsyncES2020.js | 21 const req = await import('./test') // FOUR constant in cl2 27 const req = await import('./test') // FIVE constant 33 const req = await import('./test'); // ONE constant 55 const req = await import('./test'); // FIVE constant
|
/third_party/node/test/parallel/ |
D | test-http-client-abort-destroy.js | 16 const req = http.get(options, common.mustCall((res) => { constant 39 const req = http.get(options, common.mustCall((res) => { constant 60 const req = http.get(options, common.mustNotCall()); constant 82 const req = http.get(options, common.mustNotCall()); constant
|