Lines Matching full:never

107 return value is always a pointer to a valid object (never NULL).
110 #define LSX_RETURN_VALID _Ret_ /* Function always returns a valid object (never NULL). */
112 #define LSX_RETURN_VALID /* Function always returns a valid object (never NULL). */
118 pointer to a valid array (never NULL).
121 #define LSX_RETURN_ARRAY _Ret_valid_ /* Function always returns a valid array (never NULL). */
123 #define LSX_RETURN_ARRAY /* Function always returns a valid array (never NULL). */
129 pointer to a valid 0-terminated array (never NULL).
132 #define LSX_RETURN_VALID_Z _Ret_z_ /* Function always returns a 0-terminated array (never NULL). */
134 #define LSX_RETURN_VALID_Z /* Function always returns a 0-terminated array (never NULL). */
151 pointer to one const element of the pointed-to type (never NULL).
154 #define LSX_PARAM_IN _In_ /* Required const pointer to a valid object (never NULL). */
156 #define LSX_PARAM_IN /* Required const pointer to a valid object (never NULL). */
162 pointer to a const 0-terminated string (never NULL).
165 #define LSX_PARAM_IN_Z _In_z_ /* Required const pointer to 0-terminated string (never NULL). */
167 #define LSX_PARAM_IN_Z /* Required const pointer to 0-terminated string (never NULL). */
176 …intf_format_string_ /* Required const pointer to 0-terminated printf format string (never NULL). */
178 #define LSX_PARAM_IN_PRINTF /* Required const pointer to 0-terminated printf format string (never N…
189 …RAM_IN_COUNT(len) _In_count_(len) /* Required const pointer to (len) valid objects (never NULL). */
191 #define LSX_PARAM_IN_COUNT(len) /* Required const pointer to (len) valid objects (never NULL). */
202 …YTECOUNT(len) _In_bytecount_(len) /* Required const pointer to (len) bytes of data (never NULL). */
204 #define LSX_PARAM_IN_BYTECOUNT(len) /* Required const pointer to (len) bytes of data (never NULL). …
232 pointer to one initialized element of the pointed-to type (never NULL). The
236 #define LSX_PARAM_INOUT _Inout_ /* Required pointer to a valid object (never NULL). */
238 #define LSX_PARAM_INOUT /* Required pointer to a valid object (never NULL). */
244 pointer to (len) initialized elements of the pointed-to type (never NULL). The
249 …M_INOUT_COUNT(len) _Inout_count_x_(len) /* Required pointer to (len) valid objects (never NULL). */
251 #define LSX_PARAM_INOUT_COUNT(len) /* Required pointer to (len) valid objects (never NULL). */
257 pointer to memory sufficient for one element of the pointed-to type (never
261 #define LSX_PARAM_OUT _Out_ /* Required pointer to an object to be initialized (never NULL). */
263 #define LSX_PARAM_OUT /* Required pointer to an object to be initialized (never NULL). */
269 pointer to memory sufficient for (len) bytes of data (never NULL), where (len)
283 pointer to memory sufficient for (len) elements of the pointed-to type (never
293 …post_count_(len,filled) /* Required pointer to buffer for (len) elements (never NULL); on return, …
295 …_POST_COUNT(len,filled) /* Required pointer to buffer for (len) elements (never NULL); on return, …
301 pointer to memory sufficient for (len) elements of the pointed-to type (never
311 …post_count_(len,filled) /* Required pointer to buffer for (len) elements (never NULL); on return, …
313 …_POST_COUNT(len,filled) /* Required pointer to buffer for (len) elements (never NULL); on return, …
331 pointer (never NULL) to another pointer which may be NULL when the function is
335 #define LSX_PARAM_DEREF_PRE_MAYBENULL _Deref_pre_maybenull_ /* Required pointer (never NULL) to ano…
337 #define LSX_PARAM_DEREF_PRE_MAYBENULL /* Required pointer (never NULL) to another pointer (may be N…
343 pointer (never NULL) to another pointer which will be NULL when the function
347 #define LSX_PARAM_DEREF_POST_NULL _Deref_post_null_ /* Required pointer (never NULL) to another poi…
349 #define LSX_PARAM_DEREF_POST_NULL /* Required pointer (never NULL) to another pointer, which will b…
355 pointer (never NULL) to another pointer which will be non-NULL when the
359 #define LSX_PARAM_DEREF_POST_NOTNULL _Deref_post_notnull_ /* Required pointer (never NULL) to anoth…
361 #define LSX_PARAM_DEREF_POST_NOTNULL /* Required pointer (never NULL) to another pointer, which wil…