Lines Matching refs:dir_path
656 rtl_uString * dir_path, in create_dir_with_callback() argument
666 bCreated = CreateDirectoryW( reinterpret_cast<LPCWSTR>(rtl_uString_getStr( dir_path )), NULL ); in create_dir_with_callback()
673 _osl_getFileURLFromSystemPath(dir_path, &(url.pData)); in create_dir_with_callback()
702 rtl_uString * dir_path, in create_dir_recursively_() argument
707 …rtl_ustr_lastIndexOfChar_WithLength(dir_path->buffer, dir_path->length, BACKSLASH) != dir_path->le… in create_dir_recursively_()
711 dir_path, aDirectoryCreationCallbackFunc, pData); in create_dir_recursively_()
715 if ((w32_error != ERROR_PATH_NOT_FOUND) || !has_path_parent(dir_path->buffer)) in create_dir_recursively_()
718 int pos = path_make_parent(dir_path->buffer); // dir_path->buffer[pos] = 0, restore below in create_dir_recursively_()
721 dir_path, aDirectoryCreationCallbackFunc, pData); in create_dir_recursively_()
723 dir_path->buffer[pos] = BACKSLASH; // restore in create_dir_recursively_()
728 return create_dir_recursively_(dir_path, aDirectoryCreationCallbackFunc, pData); in create_dir_recursively_()