Lines Matching refs:s
32 char *z_strdup(const char *s);
223 #define os_malloc(s) os_wpa_malloc_func((s)) argument
226 #define os_realloc(p, s) os_wpa_realloc_func((p), (s)) argument
229 #define os_zalloc(s) os_wpa_calloc_func(1, (s)) argument
232 #define os_calloc(p, s) os_wpa_calloc_func((p), (s)) argument
240 #define os_bzero(s, n) memset(s, 0, n) argument
246 #define os_strdup(s) _strdup(s) argument
248 #define os_strdup(s) z_strdup(s) argument
251 char * ets_strdup(const char *s);
254 #define os_memcpy(d, s, n) memcpy((d), (s), (n)) argument
257 #define os_memmove(d, s, n) memmove((d), (s), (n)) argument
260 #define os_memset(s, c, n) memset(s, c, n) argument
270 #define os_strlen(s) strlen(s) argument
287 #define os_strchr(s, c) strchr((s), (c)) argument
296 #define os_strrchr(s, c) strrchr((s), (c)) argument
302 #define os_strlcpy(d, s, n) strlcpy((d), (s), (n)) argument
305 #define os_strcat(d, s) strcat((d), (s)) argument