Home
last modified time | relevance | path

Searched refs:lib_path_out (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/media/libeffects/factory/
DEffectsConfigLoader.c109 int checkLibraryPath(const char *lib_path_in, char *lib_path_out) { in checkLibraryPath() argument
114 if (lib_path_in == NULL || lib_path_out == NULL) { in checkLibraryPath()
118 strlcpy(lib_path_out, lib_path_in, PATH_MAX); in checkLibraryPath()
121 str = strstr(lib_path_out, "/lib/soundfx/"); in checkLibraryPath()
127 len = str - lib_path_out; in checkLibraryPath()
140 strcpy(lib_path_out, path); in checkLibraryPath()
141 ALOGW_IF(strncmp(lib_path_out, lib_path_in, PATH_MAX) != 0, in checkLibraryPath()
142 "checkLibraryPath() corrected library path %s to %s", lib_path_in, lib_path_out); in checkLibraryPath()