Searched refs:malloc_sym (Results 1 – 1 of 1) sorted by relevance
1018 char *malloc_sym = NULL; in SDL_OSX_dlsym() local1020 malloc_sym = SDL_malloc(sym_len + 2); in SDL_OSX_dlsym()1021 if (malloc_sym) in SDL_OSX_dlsym()1023 SDL_snprintf(malloc_sym, sym_len+2, "_%s", symbol); in SDL_OSX_dlsym()1024 value = dlsymIntern(handle, malloc_sym, 1); in SDL_OSX_dlsym()1025 SDL_free(malloc_sym); in SDL_OSX_dlsym()1064 char *malloc_sym = NULL; in dlsym_prepend_underscore_intern() local1065 malloc_sym = SDL_malloc(sym_len + 2); in dlsym_prepend_underscore_intern()1066 if (malloc_sym) in dlsym_prepend_underscore_intern()1068 SDL_snprintf(malloc_sym, sym_len+2, "_%s", symbol); in dlsym_prepend_underscore_intern()[all …]