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

1 2 3 4

  /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...]
  /src/external/bsd/nvi/dist/ex/
ex_edit.c 58 int attach, setalt; local
75 attach = 0;
77 attach = 1;
85 attach = 0;
94 return (ex_N_edit(sp, cmdp, frp, attach));
119 ex_N_edit(SCR *sp, EXCMD *cmdp, FREF *frp, int attach)
133 if (attach) {
  /src/sys/arch/x86/pci/
amdnb_misc.c 85 bool attach; local
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
  /src/external/bsd/nvi/dist/ipc/
ip_run.c 43 static void attach __P((void));
80 attach();
252 * attach --
253 * Pause and let the user attach a debugger.
256 attach() function
  /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...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_dmabuf.c 258 struct dma_buf_attachment *attach; local
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
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/usr.sbin/btdevctl/
btdevctl.c 67 int ch, query, verbose, attach, detach, set, none; local
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/external/gpl3/binutils/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...]
  /src/external/gpl3/binutils.old/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...]
  /src/external/gpl3/gdb/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...]
  /src/external/gpl3/gdb.old/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...]
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
launch.py 34 # A launch or attach promise that that will be fulfilled after a
39 # A DeferredRequest that handles either a "launch" or "attach"
46 raise DAPException("launch or attach already specified")
129 @request("attach", on_dap_thread=True)
130 def attach( function
137 # The actual attach is handled by this function.
143 cmd = "attach " + str(pid)
147 raise DAPException("attach requires either 'pid' or 'target'")
148 expect_process("attach")
149 expect_stop("attach")
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
observable.h 52 particular, it is therefore not possible to call the attach or
55 /* The type of a key that can be passed to attach, which can be passed
109 /* Attach F as an observer to this observable. F cannot be detached or
117 void attach (const func_type &f, const char *name, function in class:gdb::observers::observable
120 attach (f, nullptr, name, dependencies);
123 /* Attach F as an observer to this observable.
133 void attach (const func_type &f, const token &t, const char *name, function in class:gdb::observers::observable
136 attach (f, &t, name, dependencies);
140 the token that was previously passed to any number of "attach"
228 void attach (const func_type &f, const token *t, const char *name function in class:gdb::observers::observable
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
launch.py 34 # A launch or attach promise that that will be fulfilled after a
39 # A DeferredRequest that handles either a "launch" or "attach"
46 raise DAPException("launch or attach already specified")
129 @request("attach", on_dap_thread=True)
130 def attach( function
137 # The actual attach is handled by this function.
143 cmd = "attach " + str(pid)
147 raise DAPException("attach requires either 'pid' or 'target'")
148 expect_process("attach")
149 expect_stop("attach")
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
observable.h 52 particular, it is therefore not possible to call the attach or
55 /* The type of a key that can be passed to attach, which can be passed
109 /* Attach F as an observer to this observable. F cannot be detached or
117 void attach (const func_type &f, const char *name, function in class:gdb::observers::observable
120 attach (f, nullptr, name, dependencies);
123 /* Attach F as an observer to this observable.
133 void attach (const func_type &f, const token &t, const char *name, function in class:gdb::observers::observable
136 attach (f, &t, name, dependencies);
140 the token that was previously passed to any number of "attach"
228 void attach (const func_type &f, const token *t, const char *name function in class:gdb::observers::observable
    [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 );
  /src/lib/lua/gpio/
gpio.c 208 struct gpio_attach attach; local
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/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/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/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));
  /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
    [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

Completed in 29 milliseconds

1 2 3 4