Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for keyctlSearch (0.17 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)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	KEYCTL_READ                                 = 0xb
    	KEYCTL_REJECT                               = 0x13
    	KEYCTL_RESTRICT_KEYRING                     = 0x1d
    	KEYCTL_REVOKE                               = 0x3
    	KEYCTL_SEARCH                               = 0xa
    	KEYCTL_SESSION_TO_PARENT                    = 0x12
    	KEYCTL_SETPERM                              = 0x5
    	KEYCTL_SET_REQKEY_KEYRING                   = 0xe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
Back to top