/external/chromium/chrome/browser/ |
shell_integration_linux.cc | 299 std::vector<FilePath> search_paths; local 304 search_paths.push_back(FilePath(xdg_data_home)); 313 search_paths.push_back(data_dir); 314 search_paths.push_back(data_dir.Append("applications")); 320 search_paths.push_back(FilePath("/usr/share/applications")); 321 search_paths.push_back(FilePath("/usr/local/share/applications")); 324 for (std::vector<FilePath>::const_iterator i = search_paths.begin(); 325 i != search_paths.end(); ++i) {
|
/external/chromium_org/third_party/mesa/src/src/gbm/backends/dri/ |
gbm_dri.c | 173 char path[PATH_MAX], *search_paths, *p, *next, *end; local 175 search_paths = NULL; 178 search_paths = getenv("GBM_DRIVERS_PATH"); 180 if (search_paths == NULL) 181 search_paths = DEFAULT_DRIVER_DIR; 184 end = search_paths + strlen(search_paths); 185 for (p = search_paths; p < end && dri->driver == NULL; p = next + 1) { 208 search_paths);
|
/external/mesa3d/src/gbm/backends/dri/ |
gbm_dri.c | 173 char path[PATH_MAX], *search_paths, *p, *next, *end; local 175 search_paths = NULL; 178 search_paths = getenv("GBM_DRIVERS_PATH"); 180 if (search_paths == NULL) 181 search_paths = DEFAULT_DRIVER_DIR; 184 end = search_paths + strlen(search_paths); 185 for (p = search_paths; p < end && dri->driver == NULL; p = next + 1) { 208 search_paths);
|
/external/chromium_org/chrome/browser/ |
shell_integration_linux.cc | 530 std::vector<base::FilePath> search_paths; local 534 search_paths.push_back(write_location); 541 search_paths.push_back(data_dir); 544 search_paths.push_back(base::FilePath("/usr/local/share")); 545 search_paths.push_back(base::FilePath("/usr/share")); 548 return search_paths; 634 std::vector<base::FilePath> search_paths = GetDataSearchLocations(env); local 636 for (std::vector<base::FilePath>::const_iterator i = search_paths.begin(); 637 i != search_paths.end(); ++i) { [all...] |
/external/chromium_org/third_party/mesa/src/src/egl/drivers/dri2/ |
egl_dri2.c | 371 char path[PATH_MAX], *search_paths, *p, *next, *end; local 373 search_paths = NULL; 376 search_paths = getenv("LIBGL_DRIVERS_PATH"); 378 if (search_paths == NULL) 379 search_paths = DEFAULT_DRIVER_DIR; 382 end = search_paths + strlen(search_paths); 383 for (p = search_paths; p < end && dri2_dpy->driver == NULL; p = next + 1) { 407 dri2_dpy->driver_name, search_paths); [all...] |
/external/mesa3d/src/egl/drivers/dri2/ |
egl_dri2.c | 371 char path[PATH_MAX], *search_paths, *p, *next, *end; local 373 search_paths = NULL; 376 search_paths = getenv("LIBGL_DRIVERS_PATH"); 378 if (search_paths == NULL) 379 search_paths = DEFAULT_DRIVER_DIR; 382 end = search_paths + strlen(search_paths); 383 for (p = search_paths; p < end && dri2_dpy->driver == NULL; p = next + 1) { 407 dri2_dpy->driver_name, search_paths); [all...] |