Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for systemTime (0.47 sec)

  1. src/syscall/security_windows.go

    	SidTypeDeletedAccount
    	SidTypeInvalid
    	SidTypeUnknown
    	SidTypeComputer
    	SidTypeLabel
    )
    
    //sys	LookupAccountSid(systemName *uint16, sid *SID, name *uint16, nameLen *uint32, refdDomainName *uint16, refdDomainNameLen *uint32, use *uint32) (err error) = advapi32.LookupAccountSidW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    			lnStr = fmt.Sprintf("%s %s:%d:%d s=%d",
    				fn.Name,
    				fn.Filename,
    				l.Line[li].Line,
    				l.Line[li].Column,
    				fn.StartLine)
    			if fn.Name != fn.SystemName {
    				lnStr = lnStr + "(" + fn.SystemName + ")"
    			}
    		}
    		ss = append(ss, locStr+lnStr)
    		// Do not print location details past the first line
    		locStr = "             "
    	}
    	return strings.Join(ss, "\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/internal/syscall/windows/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LookupPrivilegeValue(systemname *uint16, name *uint16, luid *LUID) (err error) {
    	r1, _, e1 := syscall.Syscall(procLookupPrivilegeValueW.Addr(), 3, uintptr(unsafe.Pointer(systemname)), uintptr(unsafe.Pointer(name)), uintptr(unsafe.Pointer(luid)))
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. src/internal/profile/encode.go

    		}
    		if l.Mapping != nil {
    			l.mappingIDX = l.Mapping.ID
    		} else {
    			l.mappingIDX = 0
    		}
    	}
    	for _, f := range p.Function {
    		f.nameX = addString(strings, f.Name)
    		f.systemNameX = addString(strings, f.SystemName)
    		f.filenameX = addString(strings, f.Filename)
    	}
    
    	p.dropFramesX = addString(strings, p.DropFrames)
    	p.keepFramesX = addString(strings, p.KeepFrames)
    
    	if pt := p.PeriodType; pt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		if l.Mapping != nil {
    			l.mappingIDX = l.Mapping.ID
    		} else {
    			l.mappingIDX = 0
    		}
    	}
    	for _, f := range p.Function {
    		f.nameX = addString(strings, f.Name)
    		f.systemNameX = addString(strings, f.SystemName)
    		f.filenameX = addString(strings, f.Filename)
    	}
    
    	p.dropFramesX = addString(strings, p.DropFrames)
    	p.keepFramesX = addString(strings, p.KeepFrames)
    
    	if pt := p.PeriodType; pt != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		sp.interest[fn.Function.SystemName] = true
    		if _, ok := addrs[addr]; !ok {
    			addrs[addr] = addrInfo{loc, sp.objectFile(loc.Mapping)}
    		}
    	}
    
    	// See if sp.sym matches line.
    	matches := func(line profile.Line) bool {
    		if line.Function == nil {
    			return false
    		}
    		return sp.sym.MatchString(line.Function.Name) ||
    			sp.sym.MatchString(line.Function.SystemName) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		Columnno: int(line.Column),
    		Name:     line.Function.Name,
    	}
    	if fname := line.Function.Filename; fname != "" {
    		ni.File = filepath.Clean(fname)
    	}
    	if o.OrigFnNames {
    		ni.OrigName = line.Function.SystemName
    	}
    	if o.ObjNames || (ni.Name == "" && ni.OrigName == "") {
    		ni.Objfile = objfile
    		ni.StartLine = int(line.Function.StartLine)
    	}
    	return ni
    }
    
    type tags struct {
    	t    []*Tag
    	flat bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	if f := fm[fName]; f != nil {
    		return f, false
    	}
    
    	f := &profile.Function{
    		ID:         uint64(len(fm) + 1),
    		Name:       ni.Name,
    		SystemName: ni.OrigName,
    		Filename:   ni.File,
    		StartLine:  int64(ni.StartLine),
    	}
    	fm[fName] = f
    	return f, true
    }
    
    // printAssembly prints an annotated assembly listing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top