Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for Dll (0.02 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/dll_windows.go

    	// loaded from system32.
    	var dll *DLL
    	var err error
    	if d.Name == "kernel32.dll" {
    		dll, err = LoadDLL(d.Name)
    	} else {
    		dll, err = loadLibraryEx(d.Name, d.System)
    	}
    	if err != nil {
    		return err
    	}
    
    	// Non-racy version of:
    	// d.dll = dll
    	atomic.StorePointer((*unsafe.Pointer)(unsafe.Pointer(&d.dll)), unsafe.Pointer(dll))
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 05 12:36:42 UTC 2020
    - 12K bytes
    - Viewed (0)
  2. src/runtime/syscall_windows_test.go

    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"syscall"
    	"testing"
    	"unsafe"
    )
    
    type DLL struct {
    	*syscall.DLL
    	t *testing.T
    }
    
    func GetDLL(t *testing.T, name string) *DLL {
    	d, e := syscall.LoadDLL(name)
    	if e != nil {
    		t.Fatal(e)
    	}
    	return &DLL{DLL: d, t: t}
    }
    
    func (d *DLL) Proc(name string) *syscall.Proc {
    	p, e := d.FindProc(name)
    	if e != nil {
    		d.t.Fatal(e)
    	}
    	return p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  3. src/runtime/os_windows.go

    //go:cgo_import_dynamic runtime._CreateWaitableTimerA CreateWaitableTimerA%3 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateWaitableTimerExW CreateWaitableTimerExW%4 "kernel32.dll"
    //go:cgo_import_dynamic runtime._DuplicateHandle DuplicateHandle%7 "kernel32.dll"
    //go:cgo_import_dynamic runtime._ExitProcess ExitProcess%1 "kernel32.dll"
    //go:cgo_import_dynamic runtime._FreeEnvironmentStringsW FreeEnvironmentStringsW%1 "kernel32.dll"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/os/OperatingSystemTest.groovy

            os.sharedLibrarySuffix == ".dll"
            os.linkLibrarySuffix == ".lib"
            os.getSharedLibraryName("a.dll") == "a.dll"
            os.getSharedLibraryName("a.DLL") == "a.DLL"
            os.getSharedLibraryName("a") == "a.dll"
            os.getSharedLibraryName("a.lib") == "a.dll"
            os.getSharedLibraryName("a.b/c") == "a.b/c.dll"
            os.getSharedLibraryName("a.b\\c") == "a.b\\c.dll"
            os.getLinkLibraryName("a") == "a.lib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultArtifactVariantSelectorFactoryTest.groovy

      - artifactType 'dll'
    Found the following transforms:
      - From '<variant1>':
          - With source attributes: artifactType 'jar'
          - Candidate transform(s):
              - Transform '' producing attributes: artifactType 'dll'
      - From '<variant2>':
          - With source attributes: artifactType 'classes'
          - Candidate transform(s):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/zsyscall_windows.go

    	modbcryptprimitives = syscall.NewLazyDLL(sysdll.Add("bcryptprimitives.dll"))
    	modiphlpapi         = syscall.NewLazyDLL(sysdll.Add("iphlpapi.dll"))
    	modkernel32         = syscall.NewLazyDLL(sysdll.Add("kernel32.dll"))
    	modnetapi32         = syscall.NewLazyDLL(sysdll.Add("netapi32.dll"))
    	modntdll            = syscall.NewLazyDLL(sysdll.Add("ntdll.dll"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            def toolProvider = Stub(PlatformToolProvider)
            toolProvider.getSharedLibraryName(_) >> { String p -> p + ".dll" }
            toolProvider.getLibrarySymbolFileName(_) >> { String p -> p + ".dll.pdb" }
            toolProvider.requiresDebugBinaryStripping() >> true
    
            def runtimeFileProp = project.objects.fileProperty()
            def linkTaskProp = project.objects.property(LinkSharedLibrary)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

      - Configuration ':lib:compile' variant debug declares attribute 'usage' with value 'api':
          - Incompatible because this component declares attribute 'artifactType' with value 'jar' and the consumer needed attribute 'artifactType' with value 'dll'
      - Configuration ':lib:compile' variant release declares attribute 'usage' with value 'api':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/PrebuiltLibrariesIntegrationTest.groovy

                        def baseDir = "libs/build/libs/hello/shared/french"
                        if (os.windows) {
                            // Windows uses a .dll file, and a different link file if it exists (not Cygwin or MinGW)
                            sharedLibraryFile = file("\${baseDir}/hello.dll")
                            if (file("\${baseDir}/hello.lib").exists()) {
                                sharedLibraryLinkFile = file("\${baseDir}/hello.lib")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. src/debug/pe/file.go

    type ImportDirectory struct {
    	OriginalFirstThunk uint32
    	TimeDateStamp      uint32
    	ForwarderChain     uint32
    	Name               uint32
    	FirstThunk         uint32
    
    	dll string
    }
    
    // ImportedSymbols returns the names of all symbols
    // referred to by the binary f that are expected to be
    // satisfied by other libraries at dynamic load time.
    // It does not return weak symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top