| /OK3568_Linux_fs/kernel/drivers/s390/char/ |
| H A D | tape_std.c | 38 struct tape_request * request = from_timer(request, t, timer); in tape_std_assign_timeout() local 39 struct tape_device * device = request->device; in tape_std_assign_timeout() 46 rc = tape_cancel_io(device, request); in tape_std_assign_timeout() 56 struct tape_request *request; in tape_std_assign() local 58 request = tape_alloc_request(2, 11); in tape_std_assign() 59 if (IS_ERR(request)) in tape_std_assign() 60 return PTR_ERR(request); in tape_std_assign() 62 request->op = TO_ASSIGN; in tape_std_assign() 63 tape_ccw_cc(request->cpaddr, ASSIGN, 11, request->cpdata); in tape_std_assign() 64 tape_ccw_end(request->cpaddr + 1, NOP, 0, NULL); in tape_std_assign() [all …]
|
| H A D | tape_34xx.c | 56 static void __tape_34xx_medium_sense(struct tape_request *request) in __tape_34xx_medium_sense() argument 58 struct tape_device *device = request->device; in __tape_34xx_medium_sense() 61 if (request->rc == 0) { in __tape_34xx_medium_sense() 62 sense = request->cpdata; in __tape_34xx_medium_sense() 81 request->rc); in __tape_34xx_medium_sense() 82 tape_free_request(request); in __tape_34xx_medium_sense() 87 struct tape_request *request; in tape_34xx_medium_sense() local 90 request = tape_alloc_request(1, 32); in tape_34xx_medium_sense() 91 if (IS_ERR(request)) { in tape_34xx_medium_sense() 93 return PTR_ERR(request); in tape_34xx_medium_sense() [all …]
|
| H A D | tape_core.c | 292 __tape_cancel_io(struct tape_device *device, struct tape_request *request) in __tape_cancel_io() argument 298 if (request->callback == NULL) in __tape_cancel_io() 303 rc = ccw_device_clear(device->cdev, (long) request); in __tape_cancel_io() 307 request->status = TAPE_REQUEST_DONE; in __tape_cancel_io() 310 request->status = TAPE_REQUEST_CANCEL; in __tape_cancel_io() 434 * request. We refuse to suspend if the device is loaded or in use for the 483 * request. We may prevent this by returning an error. 641 struct tape_request * request; in __tape_discard_requests() local 645 request = list_entry(l, struct tape_request, list); in __tape_discard_requests() 646 if (request->status == TAPE_REQUEST_IN_IO) in __tape_discard_requests() [all …]
|
| H A D | tape_3590.c | 204 struct tape_request *request; in tape_3592_kekl_query() local 213 request = tape_alloc_request(2, sizeof(*order)); in tape_3592_kekl_query() 214 if (IS_ERR(request)) { in tape_3592_kekl_query() 215 rc = PTR_ERR(request); in tape_3592_kekl_query() 218 order = request->cpdata; in tape_3592_kekl_query() 222 request->op = TO_KEKL_QUERY; in tape_3592_kekl_query() 223 tape_ccw_cc(request->cpaddr, PERF_SUBSYS_FUNC, sizeof(*order), order); in tape_3592_kekl_query() 224 tape_ccw_end(request->cpaddr + 1, READ_SS_DATA, sizeof(*int_kekls), in tape_3592_kekl_query() 226 rc = tape_do_io(device, request); in tape_3592_kekl_query() 233 tape_free_request(request); in tape_3592_kekl_query() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/video/rockchip/rga3/ |
| H A D | rga_job.c | 388 struct rga_job *rga_job_commit(struct rga_req *rga_command_base, struct rga_request *request) in rga_job_commit() argument 400 job->use_batch_mode = request->use_batch_mode; in rga_job_commit() 401 job->request_id = request->id; in rga_job_commit() 402 job->session = request->session; in rga_job_commit() 403 job->mm = request->current_mm; in rga_job_commit() 495 static int rga_request_get_current_mm(struct rga_request *request) in rga_request_get_current_mm() argument 499 for (i = 0; i < request->task_count; i++) { in rga_request_get_current_mm() 500 if (rga_is_need_current_mm(&(request->task_list[i]))) { in rga_request_get_current_mm() 503 request->current_mm = current->mm; in rga_request_get_current_mm() 512 static void rga_request_put_current_mm(struct rga_request *request) in rga_request_put_current_mm() argument [all …]
|
| /OK3568_Linux_fs/kernel/drivers/greybus/ |
| H A D | svc.c | 175 struct gb_svc_pwrmon_sample_get_request request; in gb_svc_pwrmon_sample_get() local 179 request.rail_id = rail_id; in gb_svc_pwrmon_sample_get() 180 request.measurement_type = measurement_type; in gb_svc_pwrmon_sample_get() 183 &request, sizeof(request), in gb_svc_pwrmon_sample_get() 212 struct gb_svc_pwrmon_intf_sample_get_request request; in gb_svc_pwrmon_intf_sample_get() local 216 request.intf_id = intf_id; in gb_svc_pwrmon_intf_sample_get() 217 request.measurement_type = measurement_type; in gb_svc_pwrmon_intf_sample_get() 221 &request, sizeof(request), in gb_svc_pwrmon_intf_sample_get() 259 struct gb_svc_intf_device_id_request request; in gb_svc_intf_device_id() local 261 request.intf_id = intf_id; in gb_svc_intf_device_id() [all …]
|
| /OK3568_Linux_fs/kernel/include/media/ |
| H A D | media-request.h | 3 * Media device request objects 23 * enum media_request_state - media request state 26 * @MEDIA_REQUEST_STATE_VALIDATING: Validating the request, no state changes 29 * @MEDIA_REQUEST_STATE_COMPLETE: Completed, the request is done 30 * @MEDIA_REQUEST_STATE_CLEANING: Cleaning, the request is being re-inited 31 * @MEDIA_REQUEST_STATE_UPDATING: The request is being updated, i.e. 32 * request objects are being added, 34 * @NR_OF_MEDIA_REQUEST_STATE: The number of media request states, used 50 * struct media_request - Media device request 51 * @mdev: Media device this request belongs to [all …]
|
| /OK3568_Linux_fs/external/xserver/test/xi2/ |
| H A D | protocol-xiwarppointer.c | 29 * Protocol testing for XIWarpPointer request. 104 xXIWarpPointerReq request; in test_XIWarpPointer() local 106 memset(&request, 0, sizeof(request)); in test_XIWarpPointer() 108 request_init(&request, XIWarpPointer); in test_XIWarpPointer() 110 client_request = init_client(request.length, &request); in test_XIWarpPointer() 112 request.deviceid = XIAllDevices; in test_XIWarpPointer() 113 request_XIWarpPointer(&client_request, &request, BadDevice); in test_XIWarpPointer() 115 request.deviceid = XIAllMasterDevices; in test_XIWarpPointer() 116 request_XIWarpPointer(&client_request, &request, BadDevice); in test_XIWarpPointer() 118 request.src_win = root.drawable.id; in test_XIWarpPointer() [all …]
|
| H A D | protocol-xipassivegrabdevice.c | 29 * Protocol testing for XIPassiveGrab request. 167 static unsigned char *data[4096]; /* the request buffer */ 172 xXIPassiveGrabDeviceReq *request = (xXIPassiveGrabDeviceReq *) data; in test_XIPassiveGrabDevice() local 175 request_init(request, XIPassiveGrabDevice); in test_XIPassiveGrabDevice() 177 request->grab_window = CLIENT_WINDOW_ID; in test_XIPassiveGrabDevice() 180 client_request = init_client(request->length, request); in test_XIPassiveGrabDevice() 183 request->deviceid = 12; in test_XIPassiveGrabDevice() 184 request_XIPassiveGrabDevice(&client_request, request, BadDevice, in test_XIPassiveGrabDevice() 185 request->deviceid); in test_XIPassiveGrabDevice() 188 request->length -= 2; in test_XIPassiveGrabDevice() [all …]
|
| H A D | protocol-xiqueryversion.c | 29 * Protocol testing for XIQueryVersion request and reply. 113 xXIQueryVersionReq request; in request_XIQueryVersion() local 116 request_init(&request, XIQueryVersion); in request_XIQueryVersion() 117 client = init_client(request.length, &request); in request_XIQueryVersion() 130 request.major_version = versions.major_client; in request_XIQueryVersion() 131 request.minor_version = versions.minor_client; in request_XIQueryVersion() 135 client = init_client(request.length, &request); in request_XIQueryVersion() 138 swaps(&request.length); in request_XIQueryVersion() 139 swaps(&request.major_version); in request_XIQueryVersion() 140 swaps(&request.minor_version); in request_XIQueryVersion() [all …]
|
| H A D | protocol-xiquerypointer.c | 29 * Protocol testing for XIQueryPointer request. 137 xXIQueryPointerReq request; in test_XIQueryPointer() local 139 memset(&request, 0, sizeof(request)); in test_XIQueryPointer() 141 request_init(&request, XIQueryPointer); in test_XIQueryPointer() 145 client_request = init_client(request.length, &request); in test_XIQueryPointer() 147 request.deviceid = XIAllDevices; in test_XIQueryPointer() 148 request_XIQueryPointer(&client_request, &request, BadDevice); in test_XIQueryPointer() 150 request.deviceid = XIAllMasterDevices; in test_XIQueryPointer() 151 request_XIQueryPointer(&client_request, &request, BadDevice); in test_XIQueryPointer() 153 request.win = root.drawable.id; in test_XIQueryPointer() [all …]
|
| /OK3568_Linux_fs/kernel/fs/nfsd/ |
| H A D | xdr4.h | 89 u32 ac_req_access; /* request */ 95 u32 cl_seqid; /* request */ 96 stateid_t cl_stateid; /* request+response */ 100 u64 co_offset; /* request */ 101 u32 co_count; /* request */ 106 u32 cr_namelen; /* request */ 107 char * cr_name; /* request */ 108 u32 cr_type; /* request */ 109 union { /* request */ 120 u32 cr_bmval[3]; /* request */ [all …]
|
| /OK3568_Linux_fs/external/mpp/mpp/vproc/rga/ |
| H A D | rga.cpp | 48 // context holds only one request structure and serial process all input 49 RgaReq request; member 163 int io_ret = ioctl(impl->rga_fd, RGA_BLIT_SYNC, &impl->request); in rga_ioctl() 201 RgaReq *request = &impl->request; in config_rga_yuv2rgb_mode() local 207 int src_format = request->src.format; in config_rga_yuv2rgb_mode() 208 int dst_format = request->dst.format; in config_rga_yuv2rgb_mode() 210 request->yuv2rgb_mode = 0; in config_rga_yuv2rgb_mode() 213 request->yuv2rgb_mode |= 0x1 << 0; in config_rga_yuv2rgb_mode() 216 request->yuv2rgb_mode = (2 << 4); in config_rga_yuv2rgb_mode() 233 RgaReq *request = &impl->request; in rga_control() local [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/mediactl/ |
| H A D | request-api.rst | 4 .. _media-request-api: 6 Request API 9 The Request API has been designed to allow V4L2 to deal with requirements of 19 Supporting these features without the Request API is not always possible and if 26 The Request API allows a specific configuration of the pipeline (media 31 of request completion are also available for reading. 36 The Request API extends the Media Controller API and cooperates with 37 subsystem-specific APIs to support request usage. At the Media Controller 39 node. Their life cycle is then managed through the request file descriptors in 42 request support, such as V4L2 APIs that take an explicit ``request_fd`` [all …]
|
| /OK3568_Linux_fs/kernel/sound/soc/intel/catpt/ |
| H A D | messages.c | 17 struct catpt_ipc_msg request = {{0}}, reply; in catpt_ipc_get_fw_version() local 20 request.header = msg.val; in catpt_ipc_get_fw_version() 24 ret = catpt_dsp_send_msg(cdev, request, &reply); in catpt_ipc_get_fw_version() 58 struct catpt_ipc_msg request, reply; in catpt_ipc_alloc_stream() local 91 request.header = msg.val; in catpt_ipc_alloc_stream() 92 request.size = size; in catpt_ipc_alloc_stream() 93 request.data = payload; in catpt_ipc_alloc_stream() 97 ret = catpt_dsp_send_msg(cdev, request, &reply); in catpt_ipc_alloc_stream() 109 struct catpt_ipc_msg request; in catpt_ipc_free_stream() local 112 request.header = msg.val; in catpt_ipc_free_stream() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | elevator.h | 37 bool (*allow_merge)(struct request_queue *, struct request *, struct bio *); 39 int (*request_merge)(struct request_queue *q, struct request **, struct bio *); 40 void (*request_merged)(struct request_queue *, struct request *, enum elv_merge); 41 void (*requests_merged)(struct request_queue *, struct request *, struct request *); 43 void (*prepare_request)(struct request *); 44 void (*finish_request)(struct request *); 46 struct request *(*dispatch_request)(struct blk_mq_hw_ctx *); 48 void (*completed_request)(struct request *, u64); 49 void (*requeue_request)(struct request *); 50 struct request *(*former_request)(struct request_queue *, struct request *); [all …]
|
| H A D | blk-mq.h | 56 * @sched_data: Pointer owned by the IO scheduler attached to a request 61 * @queue: Pointer to the request queue that owns this hardware context. 75 * pending request in that software queue. 114 * assigned when a request is dispatched from a hardware queue. 119 * scheduler associated with a request queue, a tag is assigned when 120 * that request is allocated. Else, this member is not used. 139 * shared across request queues. 143 /** @cpuhp_online: List to store request if CPU is going to die */ 145 /** @cpuhp_dead: List to store request if some CPU die. */ 213 * struct blk_mq_tag_set - tag set that can be shared between request queues [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_request.h | 62 * I915_FENCE_FLAG_ACTIVE - this request is currently submitted to HW. 65 * by __i915_request_unsubmit() if we preempt this request. 67 * Finally cleared for consistency on retiring the request, when 68 * we know the HW is no longer running this request. 75 * I915_FENCE_FLAG_PQUEUE - this request is ready for execution 77 * Using the scheduler, when a request is ready for execution it is put 87 * I915_FENCE_FLAG_HOLD - this request is currently on hold 89 * This request has been suspended, pending an ongoing investigation. 94 * I915_FENCE_FLAG_INITIAL_BREADCRUMB - this request has the initial 101 * I915_FENCE_FLAG_SIGNAL - this request is currently on signal_list [all …]
|
| /OK3568_Linux_fs/kernel/drivers/usb/musb/ |
| H A D | musb_gadget.c | 32 static inline void map_dma_buffer(struct musb_request *request, in map_dma_buffer() argument 38 request->map_state = UN_MAPPED; in map_dma_buffer() 43 /* Check if DMA engine can handle this request. in map_dma_buffer() 44 * DMA code must reject the USB request explicitly. in map_dma_buffer() 45 * Default behaviour is to map the request. in map_dma_buffer() 49 musb_ep->packet_sz, request->request.buf, in map_dma_buffer() 50 request->request.length); in map_dma_buffer() 54 if (request->request.dma == DMA_ADDR_INVALID) { in map_dma_buffer() 60 request->request.buf, in map_dma_buffer() 61 request->request.length, in map_dma_buffer() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/usb/musb-new/ |
| H A D | musb_gadget.c | 59 * + request lossage observed with gadgetfs 81 static inline void map_dma_buffer(struct musb_request *request, in map_dma_buffer() argument 87 request->map_state = UN_MAPPED; in map_dma_buffer() 92 /* Check if DMA engine can handle this request. in map_dma_buffer() 93 * DMA code must reject the USB request explicitly. in map_dma_buffer() 94 * Default behaviour is to map the request. in map_dma_buffer() 98 musb_ep->packet_sz, request->request.buf, in map_dma_buffer() 99 request->request.length); in map_dma_buffer() 103 if (request->request.dma == DMA_ADDR_INVALID) { in map_dma_buffer() 104 request->request.dma = dma_map_single( in map_dma_buffer() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | online_file_source.cpp | 45 std::unique_ptr<AsyncRequest> request; member in mbgl::OnlineFileRequest 52 // this to add a delay when making a new request so we don't keep retrying immediately 73 void add(OnlineFileRequest* request) { in add() argument 74 allRequests.insert(request); in add() 76 // Request the ResourceTransform actor a new url and replace the resource url with the in add() 77 // transformed one before proceeding to schedule the request. in add() 78 resourceTransform->invoke(&ResourceTransform::transform, request->resource.kind, in add() 79 … std::move(request->resource.url), [ref = request->actor()](const std::string&& url) mutable { in add() 83 request->schedule(); in add() 87 void remove(OnlineFileRequest* request) { in remove() argument [all …]
|
| /OK3568_Linux_fs/kernel/block/ |
| H A D | blk-crypto-internal.h | 26 bool bio_crypt_rq_ctx_compatible(struct request *rq, struct bio *bio); 31 static inline bool bio_crypt_ctx_back_mergeable(struct request *req, in bio_crypt_ctx_back_mergeable() 38 static inline bool bio_crypt_ctx_front_mergeable(struct request *req, in bio_crypt_ctx_front_mergeable() 45 static inline bool bio_crypt_ctx_merge_rq(struct request *req, in bio_crypt_ctx_merge_rq() 46 struct request *next) in bio_crypt_ctx_merge_rq() 52 static inline void blk_crypto_rq_set_defaults(struct request *rq) in blk_crypto_rq_set_defaults() 58 static inline bool blk_crypto_rq_is_encrypted(struct request *rq) in blk_crypto_rq_is_encrypted() 65 static inline bool bio_crypt_rq_ctx_compatible(struct request *rq, in bio_crypt_rq_ctx_compatible() 71 static inline bool bio_crypt_ctx_front_mergeable(struct request *req, in bio_crypt_ctx_front_mergeable() 77 static inline bool bio_crypt_ctx_back_mergeable(struct request *req, in bio_crypt_ctx_back_mergeable() [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/kunit/ |
| H A D | kunit.py | 54 request: KunitConfigRequest) -> KunitResult: 58 success = linux.build_reconfig(request.build_dir, request.make_options) 69 request: KunitBuildRequest) -> KunitResult: 73 success = linux.build_um_kernel(request.alltests, 74 request.jobs, 75 request.build_dir, 76 request.make_options) 91 request: KunitExecRequest) -> KunitResult: 95 timeout=None if request.alltests else request.timeout, 96 build_dir=request.build_dir) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacematchrequest/ |
| H A D | tst_qplacematchrequest.cpp | 58 QPlaceMatchRequest request; in constructorTest() local 71 request.setPlaces(places); in constructorTest() 72 request.setParameters(params); in constructorTest() 74 QPlaceMatchRequest copy(request); in constructorTest() 75 QCOMPARE(copy, request); in constructorTest() 82 QPlaceMatchRequest request; in placesTest() local 83 QCOMPARE(request.places().count(), 0); in placesTest() 94 request.setPlaces(places); in placesTest() 95 QCOMPARE(request.places(), places); in placesTest() 97 request.setPlaces(QList<QPlace>()); in placesTest() [all …]
|
| /OK3568_Linux_fs/kernel/tools/perf/pmu-events/arch/x86/westmereep-dp/ |
| H A D | memory.json | 18 "BriefDescription": "REQUEST = ANY_DATA read and RESPONSE = ANY_DRAM AND REMOTE_FWD", 29 "BriefDescription": "REQUEST = ANY_DATA read and RESPONSE = ANY_LLC_MISS", 40 "BriefDescription": "REQUEST = ANY_DATA read and RESPONSE = OTHER_LOCAL_DRAM", 51 "BriefDescription": "REQUEST = ANY_DATA read and RESPONSE = REMOTE_DRAM", 62 "BriefDescription": "REQUEST = ANY IFETCH and RESPONSE = ANY_DRAM AND REMOTE_FWD", 73 "BriefDescription": "REQUEST = ANY IFETCH and RESPONSE = ANY_LLC_MISS", 84 "BriefDescription": "REQUEST = ANY IFETCH and RESPONSE = OTHER_LOCAL_DRAM", 95 "BriefDescription": "REQUEST = ANY IFETCH and RESPONSE = REMOTE_DRAM", 106 "BriefDescription": "REQUEST = ANY_REQUEST and RESPONSE = ANY_DRAM AND REMOTE_FWD", 117 "BriefDescription": "REQUEST = ANY_REQUEST and RESPONSE = ANY_LLC_MISS", [all …]
|