Lines Matching refs:function
158 | libc function | Status | Comments |
228 interpreting invalid state or bad function arguments as programming errors using
241 - Bad argument supplied to library function
242 - Bad argument provided by platform porting function
292 call ``panic()``. This will end up calling the platform-specific function
295 then emit an ``ERROR`` message and call the platform-specific function
388 - If an argument in a function declaration is pointing to a known type then
391 - If a variable (including an argument in a function declaration) is pointing
398 - For other pointer arguments in a function declaration, use ``void *``. This
400 pointers to arbitrary data. This allows the calling function to pass a
401 pointer argument to the function without any explicit casting (the cast to
402 ``void *`` is implicit). The function implementation can then do the
415 - Use ``ssize_t`` when returning the ``sizeof()`` something from a function that
492 - They access the platform interface through a **constant** function pointer.