Lines Matching full:source
20 @param[in] source_file_path Absolute path to source file
43 CeedDebug256(ceed, CEED_DEBUG_COLOR_SUCCESS, "Checking for source file: "); in CeedCheckFilePath()
53 CeedDebug256(ceed, CEED_DEBUG_COLOR_SUCCESS, "Found JiT source file: "); in CeedCheckFilePath()
67 @param[in] source_file_path Absolute path to source file
99 …lash != *normalized_source_file_path, ceed, CEED_ERROR_MAJOR, "Malformed source path %s", source_f… in CeedNormalizePath()
110 …@brief Load source file into initialized string buffer, including full text of local files in plac…
115 @param[in] source_file_path Absolute path to source file
118 @param[out] buffer String buffer for source file contents
131 CeedDebug256(ceed, CEED_DEBUG_COLOR_SUCCESS, "Current source file: "); in CeedLoadSourceToInitializedBuffer()
136 CeedCheck(source_file, ceed, CEED_ERROR_MAJOR, "Couldn't open source file: %s", source_file_path); in CeedLoadSourceToInitializedBuffer()
137 // -- Compute size of source in CeedLoadSourceToInitializedBuffer()
141 // -- Allocate memory for entire source file in CeedLoadSourceToInitializedBuffer()
154 return CeedError(ceed, CEED_ERROR_MAJOR, "Couldn't read source file: %s", source_file_path); in CeedLoadSourceToInitializedBuffer()
221 …(!strncmp(next_left_chevron, "<ceed/jit-source/", 17) || !strncmp(next_left_chevron, "<ceed/types.… in CeedLoadSourceToInitializedBuffer()
228 // ---- Build source path in CeedLoadSourceToInitializedBuffer()
250 // ---- Recursive call to load source to buffer in CeedLoadSourceToInitializedBuffer()
277 // Copy rest of source file into buffer in CeedLoadSourceToInitializedBuffer()
291 CeedDebug256(ceed, CEED_DEBUG_COLOR_SUCCESS, "Current source file: "); in CeedLoadSourceToInitializedBuffer()
299 …@brief Load source file into initialized string buffer, including full text of local files in plac…
304 @param[in] source_file_path Absolute path to source file
307 @param[out] buffer String buffer for source file contents
321 // And load source in CeedLoadSourceAndInitializeBuffer()
327 …@brief Initialize and load source file into string buffer, including full text of local files in p…
328 …uffer() and @ref CeedLoadSourceToInitializedBuffer() if loading multiple source files into the sam…
332 @param[in] source_file_path Absolute path to source file
333 @param[out] buffer String buffer for source file contents
355 This helps construct source file paths for @ref CeedLoadSourceToBuffer().
390 *(relative_file_path) = strstr(absolute_file_path, "ceed/jit-source"); in CeedGetJitRelativePath()
391 …NULL, CEED_ERROR_MAJOR, "Couldn't find relative path including 'ceed/jit-source' for: %s", absolut… in CeedGetJitRelativePath()
412 CeedDebug256(ceed, CEED_DEBUG_COLOR_SUCCESS, "Relative JiT source file: "); in CeedGetJitAbsolutePath()
437 …return CeedError(ceed, CEED_ERROR_MAJOR, "Couldn't find matching JiT source file: %s", relative_fi… in CeedGetJitAbsolutePath()