Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LookupBaseFromImport (0.55 sec)

  1. src/cmd/link/internal/loadpe/ldpe.go

    		}
    	}
    	return nil
    }
    
    // LookupBaseFromImport examines the symbol "s" to see if it
    // corresponds to an import symbol (name of the form "__imp_XYZ") and
    // if so, it looks up the underlying target of the import symbol and
    // returns it. An error is returned if the symbol is of the form
    // "__imp_XYZ" but no XYZ can be found.
    func LookupBaseFromImport(s loader.Sym, ldr *loader.Loader, arch *sys.Arch) (loader.Sym, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    			}
    
    			// Locate underlying symbol (which originally had type
    			// SDYNIMPORT but has since been retyped to SWINDOWS).
    			ds, err := loadpe.LookupBaseFromImport(targ, ctxt.loader, ctxt.Arch)
    			if err != nil {
    				return err
    			}
    			dstyp := ctxt.loader.SymType(ds)
    			if dstyp != sym.SWINDOWS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top