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

1 2 3 4 5 6 7

  /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/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) {
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)
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
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
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...]
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);
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...]
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...]

Completed in 39 milliseconds

1 2 3 4 5 6 7