Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for keyctlSearch (0.11 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return keyctlJoin(KEYCTL_JOIN_SESSION_KEYRING, name)
    }
    
    //sys	keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int) (ret int, err error) = SYS_KEYCTL
    
    // KeyctlSearch implements the KEYCTL_SEARCH command.
    // See the full documentation at:
    // http://man7.org/linux/man-pages/man3/keyctl_search.3.html
    func KeyctlSearch(ringid int, keyType, description string, destRingid int) (id int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    	ret = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func keyctlSearch(cmd int, arg2 int, arg3 string, arg4 string, arg5 int) (ret int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(arg3)
    	if err != nil {
    		return
    	}
    	var _p1 *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top