Searched refs:handle (Results 151 - 175 of 1815) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl2/lvm2/dist/lib/report/
H A Dreport.h42 void report_free(void *handle);
43 int report_object(void *handle, struct volume_group *vg,
46 int report_output(void *handle);
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/
H A Dramht.h12 u32 handle; member in struct:nvkm_ramht_data
28 int chid, int addr, u32 handle, u32 context);
31 nvkm_ramht_search(struct nvkm_ramht *, int chid, u32 handle);
/netbsd-current/external/mit/libuv/dist/test/
H A Dblackhole-server.c29 uv_tcp_t handle; member in struct:__anon65
36 static void alloc_cb(uv_handle_t* handle, size_t suggested_size, uv_buf_t* buf);
39 static void close_cb(uv_handle_t* handle);
52 r = uv_tcp_init(stream->loop, &conn->handle);
55 r = uv_accept(stream, (uv_stream_t*)&conn->handle);
58 r = uv_read_start((uv_stream_t*)&conn->handle, alloc_cb, read_cb);
63 static void alloc_cb(uv_handle_t* handle, argument
81 conn = container_of(stream, conn_rec, handle);
90 uv_close((uv_handle_t*)&conn->handle, close_cb);
94 static void close_cb(uv_handle_t* handle) { argument
[all...]
H A Dtest-pipe-connect-prepare.c44 static void close_cb(uv_handle_t* handle) { argument
45 ASSERT_NOT_NULL(handle);
58 static void prepare_cb(uv_prepare_t* handle) { argument
59 ASSERT(handle == &prepare_handle);
H A Dtest-tcp-close-after-read-timeout.c36 static void on_client_alloc(uv_handle_t* handle,
42 static void on_client_timeout(uv_timer_t* handle);
44 static void on_close(uv_handle_t* handle);
58 static void on_client_alloc(uv_handle_t* handle, argument
74 static void on_client_timeout(uv_timer_t* handle) { argument
75 ASSERT_EQ(handle, &timer);
83 static void on_connection_alloc(uv_handle_t* handle, argument
114 static void on_close(uv_handle_t* handle) { argument
115 ASSERT(handle == (uv_handle_t*) &client ||
116 handle
122 start_server(uv_loop_t* loop, uv_tcp_t* handle) argument
[all...]
H A Dtest-tcp-connect-error.c33 static void connect_cb(uv_connect_t* handle, int status) { argument
34 ASSERT_NOT_NULL(handle);
40 static void close_cb(uv_handle_t* handle) { argument
41 ASSERT_NOT_NULL(handle);
H A Dtest-not-writable-after-shutdown.c27 static void close_cb(uv_handle_t* handle) { argument
32 uv_close((uv_handle_t*) req->handle, close_cb);
39 r = uv_shutdown(&shutdown_req, req->handle, shutdown_cb);
42 ASSERT(0 == uv_is_writable(req->handle));
H A Dtest-loop-handles.c110 static void timer_cb(uv_timer_t* handle) { argument
111 ASSERT(handle == &timer_handle);
115 static void idle_2_close_cb(uv_handle_t* handle) { argument
119 ASSERT(handle == (uv_handle_t*)&idle_2_handle);
128 static void idle_2_cb(uv_idle_t* handle) { argument
132 ASSERT(handle == &idle_2_handle);
136 uv_close((uv_handle_t*)handle, idle_2_close_cb);
140 static void idle_1_cb(uv_idle_t* handle) { argument
146 ASSERT_NOT_NULL(handle);
162 r = uv_idle_stop((uv_idle_t*)handle);
169 idle_1_close_cb(uv_handle_t* handle) argument
179 prepare_1_close_cb(uv_handle_t* handle) argument
188 check_close_cb(uv_handle_t* handle) argument
197 prepare_2_close_cb(uv_handle_t* handle) argument
206 check_cb(uv_check_t* handle) argument
242 prepare_2_cb(uv_prepare_t* handle) argument
262 prepare_1_cb(uv_prepare_t* handle) argument
[all...]
H A Dtest-tcp-connect6-error.c32 static void connect_cb(uv_connect_t* handle, int status) { argument
33 ASSERT_NOT_NULL(handle);
38 static void close_cb(uv_handle_t* handle) { argument
39 ASSERT_NOT_NULL(handle);
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
H A Dnetmgr.h44 typedef void (*isc_nm_recv_cb_t)(isc_nmhandle_t *handle, isc_result_t eresult,
49 * 'handle' the handle that can be used to send back the answer.
56 typedef isc_result_t (*isc_nm_accept_cb_t)(isc_nmhandle_t *handle,
62 * 'handle' the handle that can be used to send back the answer.
68 typedef void (*isc_nm_cb_t)(isc_nmhandle_t *handle, isc_result_t result,
73 * 'handle' the handle on which the event took place.
116 #define isc_nmhandle_attach(handle, des
[all...]
/netbsd-current/sys/external/bsd/drm/dist/bsd-core/
H A Ddrm_drawable.c40 int handle; member in struct:bsd_drm_drawable_info
48 if (a->handle > b->handle)
50 if (a->handle < b->handle)
59 drm_get_drawable_info(struct drm_device *dev, int handle) argument
63 find.handle = handle;
80 info->handle = alloc_unr(dev->drw_unrhdr);
84 info->handle
[all...]
/netbsd-current/external/mit/libuv/dist/src/unix/
H A Dasync.c45 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { argument
52 uv__handle_init(loop, (uv_handle_t*)handle, UV_ASYNC);
53 handle->async_cb = async_cb;
54 handle->pending = 0;
56 QUEUE_INSERT_TAIL(&loop->async_handles, &handle->queue);
57 uv__handle_start(handle);
63 int uv_async_send(uv_async_t* handle) { argument
65 if (ACCESS_ONCE(int, handle->pending) != 0)
68 /* Tell the other thread we're busy with the handle. */
69 if (cmpxchgi(&handle
84 uv__async_spin(uv_async_t* handle) argument
115 uv__async_close(uv_async_t* handle) argument
[all...]
/netbsd-current/external/mpl/bind/dist/lib/isc/include/isc/
H A Dnetmgr.h43 typedef void (*isc_nm_recv_cb_t)(isc_nmhandle_t *handle, isc_result_t eresult,
48 * 'handle' the handle that can be used to send back the answer.
55 typedef isc_result_t (*isc_nm_accept_cb_t)(isc_nmhandle_t *handle,
61 * 'handle' the handle that can be used to send back the answer.
67 typedef void (*isc_nm_cb_t)(isc_nmhandle_t *handle, isc_result_t result,
72 * 'handle' the handle on which the event took place.
146 #define isc_nmhandle_attach(handle, des
[all...]
/netbsd-current/sys/arch/amiga/pci/
H A Dempb_bsm.c59 static int empb_bsms(bus_space_handle_t handle, bus_size_t offset,
61 static void empb_bsu(bus_space_handle_t handle,
158 empb_bsms(bus_space_handle_t handle, argument
161 *nhandlep = handle + offset;
166 empb_bsu(bus_space_handle_t handle, bus_size_t size) argument
174 empb_bsr1(bus_space_handle_t handle, bus_size_t offset) argument
180 wp = empb_switch_window(empb_sc, handle);
183 p = (uint8_t*)((empb_sc->pci_mem_win_t->base) + (handle - wp) + offset);
190 empb_bsw1(bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
195 wp = empb_switch_window(empb_sc, handle);
201 empb_bsrm1(bus_space_handle_t handle, bus_size_t offset, u_int8_t *pointer, bus_size_t count) argument
219 empb_bswm1(bus_space_handle_t handle, bus_size_t offset, const u_int8_t *pointer, bus_size_t count) argument
237 empb_bsrr1(bus_space_handle_t handle, bus_size_t offset, u_int8_t *pointer, bus_size_t count) argument
256 empb_bswr1(bus_space_handle_t handle, bus_size_t offset, const u_int8_t *pointer, bus_size_t count) argument
275 empb_bssr1(bus_space_handle_t handle, bus_size_t offset, unsigned value, bus_size_t count) argument
319 empb_bsr2(bus_space_handle_t handle, bus_size_t offset) argument
335 empb_bsr2_swap(bus_space_handle_t handle, bus_size_t offset) argument
352 empb_bsw2(bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
364 empb_bsw2_swap(bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
376 empb_bsrm2(bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, bus_size_t count) argument
394 empb_bsrm2_swap(bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, bus_size_t count) argument
412 empb_bswm2(bus_space_handle_t handle, bus_size_t offset, const u_int16_t *pointer, bus_size_t count) argument
430 empb_bswm2_swap(bus_space_handle_t handle, bus_size_t offset, const u_int16_t *pointer, bus_size_t count) argument
448 empb_bsrr2(bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, bus_size_t count) argument
467 empb_bsrr2_swap(bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, bus_size_t count) argument
486 empb_bssr2_swap(bus_space_handle_t handle, bus_size_t offset, unsigned value, bus_size_t count) argument
505 empb_bswr2(bus_space_handle_t handle, bus_size_t offset, const u_int16_t *pointer, bus_size_t count) argument
524 empb_bswr2_swap(bus_space_handle_t handle, bus_size_t offset, const u_int16_t *pointer, bus_size_t count) argument
568 empb_bsr4(bus_space_handle_t handle, bus_size_t offset) argument
584 empb_bsr4_swap(bus_space_handle_t handle, bus_size_t offset) argument
601 empb_bsw4(bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
613 empb_bsw4_swap(bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
625 empb_bsrm4(bus_space_handle_t handle, bus_size_t offset, u_int32_t *pointer, bus_size_t count) argument
643 empb_bsrm4_swap(bus_space_handle_t handle, bus_size_t offset, u_int32_t *pointer, bus_size_t count) argument
661 empb_bswm4(bus_space_handle_t handle, bus_size_t offset, const u_int32_t *pointer, bus_size_t count) argument
679 empb_bswm4_swap(bus_space_handle_t handle, bus_size_t offset, const u_int32_t *pointer, bus_size_t count) argument
697 empb_bsrr4(bus_space_handle_t handle, bus_size_t offset, u_int32_t *pointer, bus_size_t count) argument
716 empb_bsrr4_swap(bus_space_handle_t handle, bus_size_t offset, u_int32_t *pointer, bus_size_t count) argument
735 empb_bssr4_swap(bus_space_handle_t handle, bus_size_t offset, unsigned value, bus_size_t count) argument
754 empb_bswr4(bus_space_handle_t handle, bus_size_t offset, const u_int32_t *pointer, bus_size_t count) argument
773 empb_bswr4_swap(bus_space_handle_t handle, bus_size_t offset, const u_int32_t *pointer, bus_size_t count) argument
[all...]
/netbsd-current/sys/arch/amiga/amiga/
H A Dsimple_busfuncs.c90 bus_space_handle_t handle,
95 *nhandlep = handle + offset * AMIGA_SIMPLE_BUS_STRIDE;
102 bus_space_handle_t handle,
110 bus_space_handle_t handle,
116 p = (u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
124 bus_space_handle_t handle,
130 p = (u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
137 bus_space_handle_t handle,
144 p = (volatile u_int8_t *)(handle + offset * AMIGA_SIMPLE_BUS_STRIDE);
155 bus_space_handle_t handle,
89 bsms_( bus_space_handle_t handle, bus_size_t offset, bus_size_t size, bus_space_handle_t *nhandlep) argument
101 bsu_( bus_space_handle_t handle, bus_size_t size) argument
109 bsr1_( bus_space_handle_t handle, bus_size_t offset) argument
123 bsw1_( bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
136 bsrm1_( bus_space_handle_t handle, bus_size_t offset, u_int8_t *pointer, bus_size_t count) argument
154 bswm1_( bus_space_handle_t handle, bus_size_t offset, const u_int8_t *pointer, bus_size_t count) argument
172 bsrr1_( bus_space_handle_t handle, bus_size_t offset, u_int8_t *pointer, bus_size_t count) argument
191 bswr1_( bus_space_handle_t handle, bus_size_t offset, const u_int8_t *pointer, bus_size_t count) argument
210 bssr1_( bus_space_handle_t handle, bus_size_t offset, unsigned value, bus_size_t count) argument
265 bsr2_( bus_space_handle_t handle, bus_size_t offset) argument
279 bsw2_( bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
292 bsrm2_( bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, bus_size_t count) argument
310 bswm2_( bus_space_handle_t handle, bus_size_t offset, const u_int16_t *pointer, bus_size_t count) argument
328 bsrr2_( bus_space_handle_t handle, bus_size_t offset, u_int16_t *pointer, bus_size_t count) argument
347 bswr2_( bus_space_handle_t handle, bus_size_t offset, const u_int16_t *pointer, bus_size_t count) argument
366 bssr2_( bus_space_handle_t handle, bus_size_t offset, unsigned value, bus_size_t count) argument
421 bsr4_( bus_space_handle_t handle, bus_size_t offset) argument
435 bsw4_( bus_space_handle_t handle, bus_size_t offset, unsigned value) argument
449 bsrm4_( bus_space_handle_t handle, bus_size_t offset, u_int32_t *pointer, bus_size_t count) argument
467 bswm4_( bus_space_handle_t handle, bus_size_t offset, const u_int32_t *pointer, bus_size_t count) argument
485 bsrr4_( bus_space_handle_t handle, bus_size_t offset, u_int32_t *pointer, bus_size_t count) argument
504 bswr4_( bus_space_handle_t handle, bus_size_t offset, const u_int32_t *pointer, bus_size_t count) argument
523 bssr4_( bus_space_handle_t handle, bus_size_t offset, unsigned value, bus_size_t count) argument
[all...]
/netbsd-current/sys/arch/ofppc/stand/ofwboot/
H A Dofdev.h39 int handle; member in struct:of_dev
/netbsd-current/sys/arch/macppc/stand/ofwboot/
H A Dofdev.h39 int handle; member in struct:of_dev
/netbsd-current/external/bsd/ntp/dist/include/
H A Drefclock_atom.h12 pps_handle_t handle; member in struct:refclock_atom
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
H A Dnouveau_nvkm_core_ramht.c32 nvkm_ramht_hash(struct nvkm_ramht *ramht, int chid, u32 handle) argument
36 while (handle) {
37 hash ^= (handle & ((1 << ramht->bits) - 1));
38 handle >>= ramht->bits;
46 nvkm_ramht_search(struct nvkm_ramht *ramht, int chid, u32 handle) argument
50 co = ho = nvkm_ramht_hash(ramht, chid, handle);
53 if (ramht->data[co].handle == handle)
66 int chid, int addr, u32 handle, u32 context)
74 data->handle
65 nvkm_ramht_update(struct nvkm_ramht *ramht, int co, struct nvkm_object *object, int chid, int addr, u32 handle, u32 context) argument
112 nvkm_ramht_insert(struct nvkm_ramht *ramht, struct nvkm_object *object, int chid, int addr, u32 handle, u32 context) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/mmix/
H A Derr-bpo6.s3 # Test that we handle COMM-type symbols with base-plus-offset relocs, but
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.perf/
H A Dsolib.c24 # define dlsym(handle, func) GetProcAddress (handle, func)
25 #define dlclose(handle) FreeLibrary (handle)
/netbsd-current/crypto/external/bsd/openssl/dist/providers/common/
H A Dprovider_ctx.c30 void ossl_prov_ctx_set0_handle(PROV_CTX *ctx, const OSSL_CORE_HANDLE *handle) argument
33 ctx->handle = handle;
53 return ctx->handle;
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.perf/
H A Dsolib.c24 # define dlsym(handle, func) GetProcAddress (handle, func)
25 #define dlclose(handle) FreeLibrary (handle)
/netbsd-current/external/bsd/libpcap/dist/
H A Dpcap-septel.c177 septel_inject(pcap_t *handle, const void *buf _U_, int size _U_) argument
179 pcap_strlcpy(handle->errbuf, "Sending packets isn't supported on Septel cards",
185 * Activate a handle for a live capture from the given Septel device. Always pass a NULL device
191 static pcap_t *septel_activate(pcap_t* handle) { argument
193 handle->linktype = DLT_MTP2;
203 if (handle->snapshot <= 0 || handle->snapshot > MAXIMUM_SNAPLEN)
204 handle->snapshot = MAXIMUM_SNAPLEN;
206 handle->bufsize = 0;
211 handle
[all...]
/netbsd-current/external/gpl2/lvm2/dist/test/api/
H A Dvgtest.c28 lvm_t handle; variable
37 vg = lvm_vg_create(handle, vg_name); \
60 vg = lvm_vg_open(handle, vg_name, mode, 0); \
113 handle = lvm_init(NULL);
114 if (!handle) {
154 lvm_quit(handle);
159 if (handle && lvm_errno(handle))
160 fprintf(stderr, "LVM Error: %s\n", lvm_errmsg(handle));
163 if (handle)
[all...]

Completed in 196 milliseconds

1234567891011>>