Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for addSection (0.15 sec)

  1. src/cmd/link/internal/ld/data.go

    	ldr := state.ctxt.loader
    	sname := ldr.SymName(s)
    	if strings.HasPrefix(sname, "go:") {
    		sname = ".go." + sname[len("go:"):]
    	}
    	sect := addsection(ldr, state.ctxt.Arch, seg, sname, rwx)
    	sect.Align = symalign(ldr, s)
    	state.datsize = Rnd(state.datsize, int64(sect.Align))
    	sect.Vaddr = uint64(state.datsize)
    	return sect
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/debug/elf/file.go

    		if err != nil {
    			return nil, err
    		}
    
    		if suffix == "types" {
    			if err := d.AddTypes(fmt.Sprintf("types-%d", i), b); err != nil {
    				return nil, err
    			}
    		} else {
    			if err := d.AddSection(".debug_"+suffix, b); err != nil {
    				return nil, err
    			}
    		}
    	}
    
    	return d, nil
    }
    
    // Symbols returns the symbol table for f. The symbols will be listed in the order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    			var compressedSegName string
    			if ctxt.IsELF {
    				compressedSegName = ldr.SymSect(s).Name
    			} else {
    				compressedSegName = ".zdebug_" + ldr.SymSect(s).Name[len(".debug_"):]
    			}
    			sect := addsection(ctxt.loader, ctxt.Arch, &Segdwarf, compressedSegName, 04)
    			sect.Align = int32(ctxt.Arch.Alignment)
    			sect.Length = uint64(len(z.compressed))
    			sect.Compressed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    			}
    		}
    
    		if symname != elfsym.Name {
    			l.SetSymExtname(s, elfsym.Name)
    		}
    	}
    	ctxt.Shlibs = append(ctxt.Shlibs, Shlib{Path: libpath, Hash: hash, Deps: deps, File: f})
    }
    
    func addsection(ldr *loader.Loader, arch *sys.Arch, seg *sym.Segment, name string, rwx int) *sym.Section {
    	sect := ldr.NewSection()
    	sect.Rwx = uint8(rwx)
    	sect.Name = name
    	sect.Seg = seg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/api/internal/PropertyListTransformer.java

        private final MutableActionSet<T> actions = new MutableActionSet<T>();
    
        /**
         * Adds an action to be executed when property lists are transformed.
         * @param action the action to add
         */
        public void addAction(Action<? super T> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a property list object. This will modify the
         * original.
         * @param original the property list to transform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantMapping.java

            this.outgoingConfiguration = outgoingConfiguration;
            this.action = action;
            this.objectFactory = objectFactory;
        }
    
        public void addAction(Action<? super ConfigurationVariantDetails> action) {
            this.action = Actions.composite(this.action, action);
        }
    
        public void collectVariants(Consumer<UsageContext> collector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

      sampleIDs.forEach(setSampleIndexLink);
    
      // Bind action to button with specified id.
      function addAction(id, action) {
        const btn = document.getElementById(id);
        if (btn != null) {
          btn.addEventListener('click', action);
          btn.addEventListener('touchstart', action);
        }
      }
    
      addAction('details', handleDetails);
      initConfigManager();
    
      search.addEventListener('input', handleSearch);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

        }
    
        @Override
        IvyModule withoutDefaultVariants() {
            variants.clear()
            return this
        }
    
        IvyFileModule withXml(Closure action) {
            transformer.addAction(action);
            return this
        }
    
        /**
         * Adds an additional artifact to this module.
         * @param options Can specify any of name, type, ext, classifier, conf
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*CommonType).Size", Method, 0},
    		{"(*ComplexType).Basic", Method, 0},
    		{"(*ComplexType).Common", Method, 0},
    		{"(*ComplexType).Size", Method, 0},
    		{"(*ComplexType).String", Method, 0},
    		{"(*Data).AddSection", Method, 14},
    		{"(*Data).AddTypes", Method, 3},
    		{"(*Data).LineReader", Method, 5},
    		{"(*Data).Ranges", Method, 7},
    		{"(*Data).Reader", Method, 0},
    		{"(*Data).Type", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top