HomeSort by: relevance | last modified time | path
    Searched defs:attach (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/sys/arch/x86/conf/
files.x86 40 attach cpu at cpubus label
45 attach acpicpu at cpufeaturebus label
53 attach coretemp at cpufeaturebus label
57 attach est at cpufeaturebus label
62 attach odcm at cpufeaturebus label
66 attach padlock at cpufeaturebus label
70 attach powernow at cpufeaturebus label
74 attach viac7temp at cpufeaturebus label
77 attach vmt at cpufeaturebus label
81 attach hyperv at cpufeaturebu label
130 attach ioapic at ioapicbus label
    [all...]
files.x86 40 attach cpu at cpubus label
45 attach acpicpu at cpufeaturebus label
53 attach coretemp at cpufeaturebus label
57 attach est at cpufeaturebus label
62 attach odcm at cpufeaturebus label
66 attach padlock at cpufeaturebus label
70 attach powernow at cpufeaturebus label
74 attach viac7temp at cpufeaturebus label
77 attach vmt at cpufeaturebus label
81 attach hyperv at cpufeaturebu label
130 attach ioapic at ioapicbus label
    [all...]
  /src/sys/arch/x86/pci/
amdnb_misc.c 85 bool attach; local in function:amdnb_misc_search
90 attach = true;
93 * No need to attach it twice.
108 attach = false;
114 if (!attach)
amdnb_misc.c 85 bool attach; local in function:amdnb_misc_search
90 attach = true;
93 * No need to attach it twice.
108 attach = false;
114 if (!attach)
  /src/sys/dev/wscons/
wsemulvar.h 46 void *(*attach)(int console, const struct wsscreen_descr *, void *, member in struct:wsemul_ops
wsemulvar.h 46 void *(*attach)(int console, const struct wsscreen_descr *, void *, member in struct:wsemul_ops
  /src/usr.sbin/btdevctl/
btdevctl.c 67 int ch, query, verbose, attach, detach, set, none; local in function:main
75 attach = false;
82 case 'A': /* Attach device */
83 attach = true;
144 || (attach == true && detach == true)
150 if (attach == false && detach == false)
191 if (attach == true)
207 "\t-A attach device\n"
btdevctl.c 67 int ch, query, verbose, attach, detach, set, none; local in function:main
75 attach = false;
82 case 'A': /* Attach device */
83 attach = true;
144 || (attach == true && detach == true)
150 if (attach == false && detach == false)
191 if (attach == true)
207 "\t-A attach device\n"
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_dmabuf.c 258 struct dma_buf_attachment *attach; local in function:i915_gem_prime_import
275 /* need to attach */
276 attach = dma_buf_attach(dma_buf, dev->dmat);
277 if (IS_ERR(attach))
278 return ERR_CAST(attach);
290 obj->base.import_attach = attach;
306 dma_buf_detach(dma_buf, attach);
i915_gem_dmabuf.c 258 struct dma_buf_attachment *attach; local in function:i915_gem_prime_import
275 /* need to attach */
276 attach = dma_buf_attach(dma_buf, dev->dmat);
277 if (IS_ERR(attach))
278 return ERR_CAST(attach);
290 obj->base.import_attach = attach;
306 dma_buf_detach(dma_buf, attach);
  /src/sys/external/bsd/drm2/linux/
linux_dma_buf.c 185 struct dma_buf_attachment *attach; local in function:dma_buf_dynamic_attach
188 attach = kmem_zalloc(sizeof(*attach), KM_SLEEP);
189 attach->dmabuf = dmabuf;
190 attach->dev = dmat;
191 attach->dynamic_mapping = dynamic_mapping;
194 if (dmabuf->ops->attach)
195 ret = dmabuf->ops->attach(dmabuf, attach);
200 if (attach->dynamic_mapping != dmabuf->ops->dynamic_mapping
    [all...]
linux_dma_buf.c 185 struct dma_buf_attachment *attach; local in function:dma_buf_dynamic_attach
188 attach = kmem_zalloc(sizeof(*attach), KM_SLEEP);
189 attach->dmabuf = dmabuf;
190 attach->dev = dmat;
191 attach->dynamic_mapping = dynamic_mapping;
194 if (dmabuf->ops->attach)
195 ret = dmabuf->ops->attach(dmabuf, attach);
200 if (attach->dynamic_mapping != dmabuf->ops->dynamic_mapping
    [all...]
  /src/common/dist/zlib/contrib/iostream/
zfstream.cpp 60 gzfilebuf *gzfilebuf::attach( int file_descriptor, function in class:gzfilebuf
261 void gzfilestream_common::attach( int fd, int io_mode ) { function in class:gzfilestream_common
263 if ( !buffer.attach( fd, io_mode) )
306 gzfilestream_common::attach( fd, io_mode );
326 gzfilestream_common::attach( fd, io_mode );
zfstream.cpp 60 gzfilebuf *gzfilebuf::attach( int file_descriptor, function in class:gzfilebuf
261 void gzfilestream_common::attach( int fd, int io_mode ) { function in class:gzfilestream_common
263 if ( !buffer.attach( fd, io_mode) )
306 gzfilestream_common::attach( fd, io_mode );
326 gzfilestream_common::attach( fd, io_mode );
  /src/common/dist/zlib/contrib/iostream3/
zfstream.cc 77 // Attach to gzipped file
79 gzfilebuf::attach(int fd, function in class:gzfilebuf
94 // Attempt to attach to file
387 // Initialize stream buffer and attach to file
393 this->attach(fd, mode);
407 // Attach to file and go into fail() state if unsuccessful
409 gzifstream::attach(int fd, function in class:gzifstream
412 if (!sb.attach(fd, mode | std::ios_base::in))
442 // Initialize stream buffer and attach to file
448 this->attach(fd, mode)
464 gzofstream::attach(int fd, function in class:gzofstream
    [all...]
zfstream.cc 77 // Attach to gzipped file
79 gzfilebuf::attach(int fd, function in class:gzfilebuf
94 // Attempt to attach to file
387 // Initialize stream buffer and attach to file
393 this->attach(fd, mode);
407 // Attach to file and go into fail() state if unsuccessful
409 gzifstream::attach(int fd, function in class:gzifstream
412 if (!sb.attach(fd, mode | std::ios_base::in))
442 // Initialize stream buffer and attach to file
448 this->attach(fd, mode)
464 gzofstream::attach(int fd, function in class:gzofstream
    [all...]
  /src/lib/lua/gpio/
gpio.c 208 struct gpio_attach attach; local in function:gpio_attach
212 memset(&attach, 0, sizeof(attach));
213 strlcpy(attach.ga_dvname, luaL_checkstring(L, 2),
214 sizeof(attach.ga_dvname));
215 attach.ga_offset = (int)luaL_checkinteger(L, 3);
216 attach.ga_mask = (int)luaL_checkinteger(L, 4);
218 attach.ga_flags = (int)luaL_checkinteger(L, 5);
220 attach.ga_flags = 0;
222 if (ioctl(*fd, GPIOATTACH, &attach) == -1
    [all...]
gpio.c 208 struct gpio_attach attach; local in function:gpio_attach
212 memset(&attach, 0, sizeof(attach));
213 strlcpy(attach.ga_dvname, luaL_checkstring(L, 2),
214 sizeof(attach.ga_dvname));
215 attach.ga_offset = (int)luaL_checkinteger(L, 3);
216 attach.ga_mask = (int)luaL_checkinteger(L, 4);
218 attach.ga_flags = (int)luaL_checkinteger(L, 5);
220 attach.ga_flags = 0;
222 if (ioctl(*fd, GPIOATTACH, &attach) == -1
    [all...]
  /src/sys/arch/hpcmips/vr/
vr.c 182 int (*attach)(bus_space_tag_t, int, int, int, tcflag_t, int); member in struct:vr_com_platdep
189 com_hpcio_cndb_attach, /* attach proc */
198 com_vrip_cndb_attach, /* attach proc */
206 com_vrip_cndb_attach, /* attach proc */
214 com_vrip_cndb_attach, /* attach proc */
222 com_vrip_cndb_attach, /* attach proc */
230 com_vrip_cndb_attach, /* attach proc */
238 com_vrip_cndb_attach, /* attach proc */
247 NULL, /* attach proc */
427 if (com_info->attach != NULL)
    [all...]
  /src/sys/dev/ic/
ac97var.h 38 * This is the interface used to attach the AC97 compliant CODEC.
51 int (*attach)(void *, struct ac97_codec_if *); member in struct:ac97_host_if
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_dma_buf.c 187 * amdgpu_dma_buf_attach - &dma_buf_ops.attach implementation
189 * @dmabuf: DMA-buf where we attach to
190 * @attach: attachment to add
195 struct dma_buf_attachment *attach)
205 if (attach->dev->driver == adev->dev->driver)
234 * @attach: the attachment to remove
239 struct dma_buf_attachment *attach)
249 if (attach->dev->driver != adev->dev->driver && bo->prime_shared_count)
256 * @attach: DMA-buf attachment
267 static struct sg_table *amdgpu_dma_buf_map(struct dma_buf_attachment *attach,
458 struct dma_buf_attachment *attach; local in function:amdgpu_gem_prime_import
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_bridge.h 43 * @attach:
48 * The @attach callback is optional.
54 int (*attach)(struct drm_bridge *bridge); member in struct:drm_bridge_funcs
  /src/sys/external/bsd/drm2/include/linux/
dma-buf.h 58 int (*attach)(struct dma_buf *, struct dma_buf_attachment *); member in struct:dma_buf_ops
  /src/sys/dev/cardbus/
if_ral_cardbus.c 62 int (*attach)(void *, int); member in struct:ral_opns
167 (*csc->sc_opns->attach)(sc, PCI_PRODUCT(ca->ca_id));
  /src/sys/dev/pci/
if_ral_pci.c 59 int (*attach)(void *, int); member in struct:ral_opns
231 (*psc->sc_opns->attach)(sc, PCI_PRODUCT(pa->pa_id));

Completed in 35 milliseconds

1 2 3