VirtualBox

Changeset 8163 in vbox for trunk


Ignore:
Timestamp:
Apr 18, 2008 4:38:25 PM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
29873
Message:

rebrand IPRT

Location:
trunk/include/iprt
Files:
51 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/alloc.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Memory Allocation.
     2 * Incredibly Portable Runtime - Memory Allocation.
    33 */
    44
  • trunk/include/iprt/alloca.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - alloca().
     2 * Incredibly Portable Runtime - alloca().
    33 */
    44
  • trunk/include/iprt/asm.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Assembly Functions.
     2 * Incredibly Portable Runtime - Assembly Functions.
    33 */
    44
  • trunk/include/iprt/assert.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Assertions.
     2 * Incredibly Portable Runtime - Assertions.
    33 */
    44
  • trunk/include/iprt/avl.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - AVL Trees.
     2 * Incredibly Portable Runtime - AVL Trees.
    33 */
    44
  • trunk/include/iprt/cdefs.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Common C and C++ definitions.
     2 * Incredibly Portable Runtime - Common C and C++ definitions.
    33 */
    44
     
    3232
    3333
    34 /** @defgroup grp_rt_cdefs  innotek Portable Runtime Common Definitions and Macros
     34/** @defgroup grp_rt_cdefs  Incredibly Portable Runtime Common Definitions and Macros
    3535 * @{
    3636 */
  • trunk/include/iprt/cpputils.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - C++ Utilities (useful templates, defines and such).
     2 * Incredibly Portable Runtime - C++ Utilities (useful templates, defines and such).
    33 */
    44
  • trunk/include/iprt/cpuset.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - CPU Set.
     2 * Incredibly Portable Runtime - CPU Set.
    33 */
    44
  • trunk/include/iprt/crc32.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - CRC32.
     2 * Incredibly Portable Runtime - CRC32.
    33 */
    44
  • trunk/include/iprt/crc64.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - CRC64.
     2 * Incredibly Portable Runtime - CRC64.
    33 */
    44
  • trunk/include/iprt/critsect.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Critical Sections.
     2 * Incredibly Portable Runtime - Critical Sections.
    33 */
    44
  • trunk/include/iprt/ctype.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - ctype.h wrapper and C locale variants.
     2 * Incredibly Portable Runtime - ctype.h wrapper and C locale variants.
    33 */
    44
  • trunk/include/iprt/dir.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Directory Manipulation.
     2 * Incredibly Portable Runtime - Directory Manipulation.
    33 */
    44
  • trunk/include/iprt/env.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Process Environment Strings.
     2 * Incredibly Portable Runtime - Process Environment Strings.
    33 */
    44
     
    4848/**
    4949 * Creates an empty environment block.
    50  * 
    51  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    52  * 
     50 *
     51 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     52 *
    5353 * @param   pEnv        Where to store the handle of the new environment block.
    5454 */
     
    7878/**
    7979 * Get the execve/spawnve/main envp.
    80  * 
     80 *
    8181 * All returned strings are in the current process' codepage.
    8282 * This array is only valid until the next RTEnv call.
    83  * 
     83 *
    8484 * @returns Pointer to the raw array of environment variables.
    8585 * @returns NULL if Env is NULL or invalid.
    86  * 
     86 *
    8787 * @param   Env     Environment block handle.
    8888 */
     
    9292/**
    9393 * Checks if an environment variable exists in the default environment block.
    94  * 
    95  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    96  * 
    97  * @param   pszVar      The environment variable name.
    98  * @remark  WARNING! The current implementation does not perform the appropriate 
     94 *
     95 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     96 *
     97 * @param   pszVar      The environment variable name.
     98 * @remark  WARNING! The current implementation does not perform the appropriate
    9999 *          codeset conversion. We'll figure this out when it becomes necessary.
    100100 */
     
    103103/**
    104104 * Checks if an environment variable exists in a specific environment block.
    105  * 
    106  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    107  * 
     105 *
     106 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     107 *
    108108 * @param   Env         The environment handle.
    109109 * @param   pszVar      The environment variable name.
     
    113113/**
    114114 * Gets an environment variable from the default environment block. (getenv).
    115  * 
    116  * The caller is responsible for ensuring that nobody changes the environment 
     115 *
     116 * The caller is responsible for ensuring that nobody changes the environment
    117117 * while it's using the returned string pointer!
    118  * 
     118 *
    119119 * @returns Pointer to read only string on success, NULL if the variable wasn't found.
    120  * 
    121  * @param   pszVar      The environment variable name.
    122  * 
    123  * @remark  WARNING! The current implementation does not perform the appropriate 
     120 *
     121 * @param   pszVar      The environment variable name.
     122 *
     123 * @remark  WARNING! The current implementation does not perform the appropriate
    124124 *          codeset conversion. We'll figure this out when it becomes necessary.
    125125 */
     
    128128/**
    129129 * Gets an environment variable in a specific environment block.
    130  * 
    131  * @returns IPRT status code.
    132  * 
     130 *
     131 * @returns IPRT status code.
     132 *
    133133 * @param   Env         The environment handle.
    134134 * @param   pszVar      The environment variable name.
     
    141141/**
    142142 * Puts an variable=value string into the environment (putenv).
    143  * 
    144  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    145  * 
    146  * @param   pszVarEqualValue    The variable '=' value string. If the value and '=' is 
     143 *
     144 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     145 *
     146 * @param   pszVarEqualValue    The variable '=' value string. If the value and '=' is
    147147 *                              omitted, the variable is removed from the environment.
    148  * 
     148 *
    149149 * @remark Don't assume the value is copied.
    150  * @remark  WARNING! The current implementation does not perform the appropriate 
     150 * @remark  WARNING! The current implementation does not perform the appropriate
    151151 *          codeset conversion. We'll figure this out when it becomes necessary.
    152152 */
     
    155155/**
    156156 * Puts a copy of the passed in 'variable=value' string into the environment block.
    157  * 
    158  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    159  * 
     157 *
     158 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     159 *
    160160 * @param   Env                 Handle of the environment block.
    161  * @param   pszVarEqualValue    The variable '=' value string. If the value and '=' is 
     161 * @param   pszVarEqualValue    The variable '=' value string. If the value and '=' is
    162162 *                              omitted, the variable is removed from the environment.
    163163 */
     
    166166/**
    167167 * Sets an environment variable (setenv(,,1)).
    168  * 
    169  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    170  * 
     168 *
     169 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     170 *
    171171 * @param   pszVar      The environment variable name.
    172172 * @param   pszValue    The environment variable value.
    173  * 
    174  * @remark  WARNING! The current implementation does not perform the appropriate 
     173 *
     174 * @remark  WARNING! The current implementation does not perform the appropriate
    175175 *          codeset conversion. We'll figure this out when it becomes necessary.
    176176 */
     
    179179/**
    180180 * Sets an environment variable (setenv(,,1)).
    181  * 
    182  * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
    183  * 
     181 *
     182 * @returns IPRT status code. Typical error is VERR_NO_MEMORY.
     183 *
    184184 * @param   Env         The environment handle.
    185185 * @param   pszVar      The environment variable name.
     
    190190/**
    191191 * Removes an environment variable from the default environment block.
    192  * 
     192 *
    193193 * @returns IPRT status code.
    194194 * @returns VINF_ENV_VAR_NOT_FOUND if the variable was not found.
    195  * 
    196  * @param   pszVar      The environment variable name.
    197  * 
    198  * @remark  WARNING! The current implementation does not perform the appropriate 
     195 *
     196 * @param   pszVar      The environment variable name.
     197 *
     198 * @remark  WARNING! The current implementation does not perform the appropriate
    199199 *          codeset conversion. We'll figure this out when it becomes necessary.
    200200 */
     
    203203/**
    204204 * Removes an environment variable from the specified environment block.
    205  * 
     205 *
    206206 * @returns IPRT status code.
    207207 * @returns VINF_ENV_VAR_NOT_FOUND if the variable was not found.
    208  * 
     208 *
    209209 * @param   Env         The environment handle.
    210210 * @param   pszVar      The environment variable name.
  • trunk/include/iprt/err.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Status Codes.
     2 * Incredibly Portable Runtime - Status Codes.
    33 */
    44
  • trunk/include/iprt/err.sed

    r8155 r8163  
    11## @file
    2 # innotek Portable Runtime - SED script for converting VBox/err.h to .mac.
     2# Incredibly Portable Runtime - SED script for converting VBox/err.h to .mac.
    33#
    44
  • trunk/include/iprt/file.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - File I/O.
     2 * Incredibly Portable Runtime - File I/O.
    33 */
    44
  • trunk/include/iprt/fs.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Filesystem.
     2 * Incredibly Portable Runtime - Filesystem.
    33 */
    44
  • trunk/include/iprt/getopt.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Command Line Parsing.
     2 * Incredibly Portable Runtime - Command Line Parsing.
    33 */
    44
  • trunk/include/iprt/heap.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - A Simple Heap.
     2 * Incredibly Portable Runtime - A Simple Heap.
    33 */
    44
  • trunk/include/iprt/initterm.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Runtime Init/Term.
     2 * Incredibly Portable Runtime - Runtime Init/Term.
    33 */
    44
     
    3636__BEGIN_DECLS
    3737
    38 /** @defgroup grp_rt    innotek Portable Runtime APIs
     38/** @defgroup grp_rt    Incredibly Portable Runtime APIs
    3939 * @{
    4040 */
  • trunk/include/iprt/ldr.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Loader.
     2 * Incredibly Portable Runtime - Loader.
    33 */
    44
     
    8787/**
    8888 * Opens a binary image file using kLdr.
    89  * 
     89 *
    9090 * @returns iprt status code.
    9191 * @param   pszFilename     Image filename.
  • trunk/include/iprt/lock.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - RTLock Classes for Scope-based Locking.
     2 * Incredibly Portable Runtime - RTLock Classes for Scope-based Locking.
    33 */
    44
  • trunk/include/iprt/log.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Logging.
     2 * Incredibly Portable Runtime - Logging.
    33 */
    44
     
    4343
    4444/**
    45  * innotek Portable Runtime Logging Groups.
     45 * Incredibly Portable Runtime Logging Groups.
    4646 * (Remember to update RT_LOGGROUP_NAMES!)
    4747 *
     
    7171
    7272/** @def RT_LOGGROUP_NAMES
    73  * innotek Portable Runtime Logging group names.
     73 * Incredibly Portable Runtime Logging group names.
    7474 *
    7575 * Must correspond 100% to RTLOGGROUP!
  • trunk/include/iprt/md5.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Message-Digest algorithm 5.
     2 * Incredibly Portable Runtime - Message-Digest algorithm 5.
    33 */
    44
  • trunk/include/iprt/mem.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Memory Management and Manipulation.
     2 * Incredibly Portable Runtime - Memory Management and Manipulation.
    33 */
    44
  • trunk/include/iprt/memobj.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Memory Objects (Ring-0).
     2 * Incredibly Portable Runtime - Memory Objects (Ring-0).
    33 */
    44
  • trunk/include/iprt/memory

    r4747 r8163  
    11/** @file
    2  * innotek Portable Runtime - C++ Extensions: memory.
     2 * Incredibly Portable Runtime - C++ Extensions: memory.
    33 */
    44
  • trunk/include/iprt/mp.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Multiprocessor.
     2 * Incredibly Portable Runtime - Multiprocessor.
    33 */
    44
  • trunk/include/iprt/param.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Parameter Definitions.
     2 * Incredibly Portable Runtime - Parameter Definitions.
    33 */
    44
  • trunk/include/iprt/path.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Path Manipulation.
     2 * Incredibly Portable Runtime - Path Manipulation.
    33 */
    44
  • trunk/include/iprt/process.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Process Management.
     2 * Incredibly Portable Runtime - Process Management.
    33 */
    44
  • trunk/include/iprt/rand.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Random Numbers and Byte Streams.
     2 * Incredibly Portable Runtime - Random Numbers and Byte Streams.
    33 */
    44
  • trunk/include/iprt/req.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Request packets
     2 * Incredibly Portable Runtime - Request packets
    33 */
    44
  • trunk/include/iprt/runtime.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Include Everything.
     2 * Incredibly Portable Runtime - Include Everything.
    33 */
    44
  • trunk/include/iprt/semaphore.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Semaphore.
     2 * Incredibly Portable Runtime - Semaphore.
    33 */
    44
  • trunk/include/iprt/spinlock.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Spinlocks.
     2 * Incredibly Portable Runtime - Spinlocks.
    33 */
    44
  • trunk/include/iprt/stdarg.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - stdarg.h wrapper.
     2 * Incredibly Portable Runtime - stdarg.h wrapper.
    33 */
    44
  • trunk/include/iprt/stdint.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - stdint.h wrapper (for backlevel compilers like MSC).
     2 * Incredibly Portable Runtime - stdint.h wrapper (for backlevel compilers like MSC).
    33 */
    44
  • trunk/include/iprt/stream.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - I/O Stream.
     2 * Incredibly Portable Runtime - I/O Stream.
    33 */
    44
  • trunk/include/iprt/string.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - String Manipluation.
     2 * Incredibly Portable Runtime - String Manipluation.
    33 */
    44
  • trunk/include/iprt/system.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - System.
     2 * Incredibly Portable Runtime - System.
    33 */
    44
  • trunk/include/iprt/table.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Abstract Table/Trees.
     2 * Incredibly Portable Runtime - Abstract Table/Trees.
    33 */
    44
  • trunk/include/iprt/tcp.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - TCP/IP.
     2 * Incredibly Portable Runtime - TCP/IP.
    33 */
    44
  • trunk/include/iprt/thread.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Threads.
     2 * Incredibly Portable Runtime - Threads.
    33 */
    44
  • trunk/include/iprt/time.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Time.
     2 * Incredibly Portable Runtime - Time.
    33 */
    44
  • trunk/include/iprt/timer.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Timer.
     2 * Incredibly Portable Runtime - Timer.
    33 */
    44
     
    124124/** CPU mask. */
    125125#define RTTIMER_FLAGS_CPU_MASK       0xff
    126 /** Convert a CPU number (0-based) to RTTimerCreateEx flags. 
     126/** Convert a CPU number (0-based) to RTTimerCreateEx flags.
    127127 * This will automatically OR in the RTTIMER_FLAG_CPU_SPECIFIC flag. */
    128128#define RTTIMER_FLAGS_CPU(iCpu)      ( (iCpu) | RTTIMER_FLAG_CPU_SPECIFIC )
  • trunk/include/iprt/types.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Types.
     2 * Incredibly Portable Runtime - Types.
    33 */
    44
     
    110110
    111111
    112 /** @defgroup grp_rt_types  innotek Portable Runtime Base Types
     112/** @defgroup grp_rt_types  Incredibly Portable Runtime Base Types
    113113 * @{
    114114 */
  • trunk/include/iprt/uni.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Unicode Code Points.
     2 * Incredibly Portable Runtime - Unicode Code Points.
    33 */
    44
  • trunk/include/iprt/uuid.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Universal Unique Identifiers (UUID).
     2 * Incredibly Portable Runtime - Universal Unique Identifiers (UUID).
    33 */
    44
  • trunk/include/iprt/zip.h

    r8155 r8163  
    11/** @file
    2  * innotek Portable Runtime - Compression.
     2 * Incredibly Portable Runtime - Compression.
    33 */
    44
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette