Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 98 for _Gid_t (0.23 sec)

  1. src/runtime/cgo/linux_syscall.c

    }
    
    void
    _cgo_libc_setresgid(argset_t* x) {
    	SET_RETVAL(setresgid((gid_t) x->args[0], (gid_t) x->args[1],
    			     (gid_t) x->args[2]));
    }
    
    void
    _cgo_libc_setresuid(argset_t* x) {
    	SET_RETVAL(setresuid((uid_t) x->args[0], (uid_t) x->args[1],
    			     (uid_t) x->args[2]));
    }
    
    void
    _cgo_libc_setreuid(argset_t* x) {
    	SET_RETVAL(setreuid((uid_t) x->args[0], (uid_t) x->args[1]));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/rpc.idl

    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    		uuid_t uuid;
    	} policy_handle;
    
    	/*
    	 * typedef struct _UNICODE_STRING
    	 *     USHORT Length;
    	 *     USHORT MaximumLength;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/dcerpc/rpc.idl

    	    uint32_t time_low;
    	    uint16_t time_mid;
    	    uint16_t time_hi_and_version;
    	    uint8_t clock_seq_hi_and_reserved;
    	    uint8_t clock_seq_low;
    	    uint8_t node[6];
    	} uuid_t;
    
    	/* win32 stuff */
    
    	typedef struct {
    		uint32_t type;
    		uuid_t uuid;
    	} policy_handle;
    
    	/*
    	 * typedef struct _UNICODE_STRING
    	 *     USHORT Length;
    	 *     USHORT MaximumLength;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/lsarpc.idl

    		LsarQosInfo *security_quality_of_service;
    	} LsarObjectAttributes;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarDomainInfo;
    
    	typedef struct {
    		unicode_string name;
    		unicode_string dns_domain;
    		unicode_string dns_forest;
    		uuid_t domain_guid;
    		sid_t *sid;
    	} LsarDnsDomainInfo;
    
    	enum {
    		POLICY_INFO_AUDIT_EVENTS   = 2,
    		POLICY_INFO_PRIMARY_DOMAIN = 3,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.idl

    		LsarQosInfo *security_quality_of_service;
    	} LsarObjectAttributes;
    
    	typedef struct {
    		unicode_string name;
    		sid_t *sid;
    	} LsarDomainInfo;
    
    	typedef struct {
    		unicode_string name;
    		unicode_string dns_domain;
    		unicode_string dns_forest;
    		uuid_t domain_guid;
    		sid_t *sid;
    	} LsarDnsDomainInfo;
    
    	enum {
    		POLICY_INFO_AUDIT_EVENTS   = 2,
    		POLICY_INFO_PRIMARY_DOMAIN = 3,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  6. src/internal/syscall/unix/user_darwin.go

    )
    
    type Passwd struct {
    	Name   *byte
    	Passwd *byte
    	Uid    uint32 // uid_t
    	Gid    uint32 // gid_t
    	Change int64  // time_t
    	Class  *byte
    	Gecos  *byte
    	Dir    *byte
    	Shell  *byte
    	Expire int64 // time_t
    }
    
    type Group struct {
    	Name   *byte
    	Passwd *byte
    	Gid    uint32 // gid_t
    	Mem    **byte
    }
    
    //go:cgo_import_dynamic libc_getpwnam_r getpwnam_r  "/usr/lib/libSystem.B.dylib"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 07 16:09:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/rpc.java

    package jcifs.smb1.dcerpc;
    
    import jcifs.smb1.dcerpc.ndr.*;
    import jcifs.smb1.util.*;
    
    public class rpc {
    
        public static class uuid_t extends NdrObject {
    
            public int time_low;
            public short time_mid;
            public short time_hi_and_version;
            public byte clock_seq_hi_and_reserved;
            public byte clock_seq_low;
            public byte[] node;
    
            public void encode(NdrBuffer _dst) throws NdrException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/rpc.java

    package jcifs.dcerpc;
    
    
    import jcifs.dcerpc.ndr.NdrBuffer;
    import jcifs.dcerpc.ndr.NdrException;
    import jcifs.dcerpc.ndr.NdrObject;
    
    
    @SuppressWarnings ( "all" )
    public class rpc {
    
        public static class uuid_t extends NdrObject {
    
            public int time_low;
            public short time_mid;
            public short time_hi_and_version;
            public byte clock_seq_hi_and_reserved;
            public byte clock_seq_low;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  9. src/os/user/cgo_lookup_cgo.go

    	*perr = getgrnam_r(name, &grp, buf, buflen, &result);
    	*found = result != NULL;
    	return grp;
    }
    */
    import "C"
    
    type _C_char = C.char
    type _C_int = C.int
    type _C_gid_t = C.gid_t
    type _C_uid_t = C.uid_t
    type _C_size_t = C.size_t
    type _C_struct_group = C.struct_group
    type _C_struct_passwd = C.struct_passwd
    type _C_long = C.long
    
    func _C_pw_uid(p *_C_struct_passwd) _C_uid_t   { return p.pw_uid }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 16 17:45:51 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. src/syscall/exec_libc.go

    		err1 = setpgid(0, uintptr(sys.Pgid))
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	if sys.Foreground {
    		pgrp = _Pid_t(sys.Pgid)
    		if pgrp == 0 {
    			r1, err1 = getpid()
    			if err1 != 0 {
    				goto childerror
    			}
    
    			pgrp = _Pid_t(r1)
    		}
    
    		// Place process group in foreground.
    		err1 = ioctl(uintptr(sys.Ctty), uintptr(TIOCSPGRP), uintptr(unsafe.Pointer(&pgrp)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top