HomeSort by relevance Sort by last modified time
    Searched defs:DLL (Results 1 - 8 of 8) sorted by null

  /external/syslinux/com32/lib/
vdprintf.c 20 DLL = 0,
65 uint8_t dll, dlm, lcr; local
73 outb(0x01, debug_base + DLL);
76 dll = inb(debug_base + DLL);
88 if (dll != 0x01 || dlm != 0x00 || lcr != 0x83) {
  /external/syslinux/com32/libupload/
serial.c 14 DLL = 0,
33 uint8_t dll, dlm, lcr; local
84 sif->old.dll = inb(port + DLL);
86 outb(divisor, port + DLL);
90 dll = inb(port + DLL);
102 if (dll != (uint8_t)divisor ||
156 outb(sif->old.dll, port + DLL);
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
dll_windows.go 14 // DLLError describes reasons for DLL load failures.
33 // A DLL implements access to a single DLL.
34 type DLL struct {
39 // LoadDLL loads the named DLL file into memory.
41 // If name is not an absolute path and is not a known system DLL used by
42 // Go, Windows will search for the named DLL in many locations, causing
43 // potential DLL preloading attacks.
47 func LoadDLL(name string) (*DLL, error) {
66 d := &DLL{
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
dll_windows.go 14 // DLLError describes reasons for DLL load failures.
33 // A DLL implements access to a single DLL.
34 type DLL struct {
39 // LoadDLL loads the named DLL file into memory.
41 // If name is not an absolute path and is not a known system DLL used by
42 // Go, Windows will search for the named DLL in many locations, causing
43 // potential DLL preloading attacks.
47 func LoadDLL(name string) (*DLL, error) {
66 d := &DLL{
    [all...]
  /external/python/cpython2/PC/os2emx/
Makefile 10 # The output of the build is a largish Python26.DLL containing the
13 # Python26.DLL is needed. We also build python_s.a static library (which
47 # I have had no success trying to use a DLL version, even when
80 LDFLAGS.DLL= $(LDFLAGS) -Zdll
116 MODLIB.EXT= .dll
211 %.dll:
212 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(L^) $(LIBS)
215 $(LD) $(LDFLAGS.DLL) -o $@ $(^^) $(PYTHON.IMPLIB) $(LIBS)
250 PYTHON.DLL= $(PYTHON_LIB).dll
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
syscall_windows_test.go 24 type DLL struct {
25 *syscall.DLL
29 func GetDLL(t *testing.T, name string) *DLL {
34 return &DLL{DLL: d, t: t}
37 func (d *DLL) Proc(name string) *syscall.Proc {
51 a, _, _ := GetDLL(t, "user32.dll").Proc("UnionRect").Call(
98 d := GetDLL(t, "kernel32.dll")
126 a, _, _ := GetDLL(t, "user32.dll").Proc("wsprintfA").Call(
136 d := GetDLL(t, "user32.dll")
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
syscall_windows_test.go 24 type DLL struct {
25 *syscall.DLL
29 func GetDLL(t *testing.T, name string) *DLL {
34 return &DLL{DLL: d, t: t}
37 func (d *DLL) Proc(name string) *syscall.Proc {
51 a, _, _ := GetDLL(t, "user32.dll").Proc("UnionRect").Call(
98 d := GetDLL(t, "kernel32.dll")
126 a, _, _ := GetDLL(t, "user32.dll").Proc("wsprintfA").Call(
136 d := GetDLL(t, "user32.dll")
    [all...]
  /external/clang/lib/Driver/
Tools.cpp     [all...]

Completed in 159 milliseconds