Hoogle Search

Within LTS Haskell 24.40 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. getRealUserID :: IO UserID

    unix System.Posix.User.ByteString

    getRealUserID calls getuid to obtain the real UserID associated with the current process.

  2. getUserEntryForID :: UserID -> IO UserEntry

    unix System.Posix.User.ByteString

    getUserEntryForID uid calls getpwuid_r to obtain the UserEntry information associated with UserID uid. This operation may fail with isDoesNotExistError if no such user exists.

  3. groupID :: GroupEntry -> GroupID

    unix System.Posix.User.ByteString

    The unique numeric ID for this group (gr_gid)

  4. setEffectiveGroupID :: GroupID -> IO ()

    unix System.Posix.User.ByteString

    setEffectiveGroupID uid calls setegid to set the effective group-id associated with the current process to gid. This does not update the real group-id or set-group-id.

  5. setEffectiveUserID :: UserID -> IO ()

    unix System.Posix.User.ByteString

    setEffectiveUserID uid calls seteuid to set the effective user-id associated with the current process to uid. This does not update the real user-id or set-user-id.

  6. setGroupID :: GroupID -> IO ()

    unix System.Posix.User.ByteString

    setGroupID gid calls setgid to set the real, effective, and saved set-group-id associated with the current process to gid.

  7. setUserID :: UserID -> IO ()

    unix System.Posix.User.ByteString

    setUserID uid calls setuid to set the real, effective, and saved set-user-id associated with the current process to uid.

  8. userGroupID :: UserEntry -> GroupID

    unix System.Posix.User.ByteString

    Primary group ID (pw_gid)

  9. userID :: UserEntry -> UserID

    unix System.Posix.User.ByteString

    Numeric ID for this user (pw_uid)

  10. ropt_hide_successes :: RunnerOptions' (f :: Type -> Type) -> f Bool

    test-framework Test.Framework.Runners.Options

    No documentation available.

Page 399 of many | Previous | Next