Home
last modified time | relevance | path

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

/libCEED/interface/
H A Dceed-jit-tools.c27 int CeedCheckFilePath(Ceed ceed, const char *source_file_path, bool *is_valid) { in CeedCheckFilePath() argument
31 char *last_colon = strrchr(source_file_path, ':'); in CeedCheckFilePath()
34 size_t source_file_path_length = (last_colon - source_file_path + 1); in CeedCheckFilePath()
37 memcpy(source_file_path_only, source_file_path, source_file_path_length - 1); in CeedCheckFilePath()
39 source_file_path_only = (char *)source_file_path; in CeedCheckFilePath()
74 static int CeedNormalizePath(Ceed ceed, const char *source_file_path, char **normalized_source_file… in CeedNormalizePath() argument
75 CeedCall(CeedStringAllocCopy(source_file_path, normalized_source_file_path)); in CeedNormalizePath()
99 …normalized_source_file_path, ceed, CEED_ERROR_MAJOR, "Malformed source path %s", source_file_path); in CeedNormalizePath()
124 int CeedLoadSourceToInitializedBuffer(Ceed ceed, const char *source_file_path, CeedInt *num_file_pa… in CeedLoadSourceToInitializedBuffer() argument
132 CeedDebug(ceed, "%s\n", source_file_path); in CeedLoadSourceToInitializedBuffer()
[all …]
/libCEED/include/ceed/
H A Djit-tools.h14 CEED_EXTERN int CeedCheckFilePath(Ceed ceed, const char *source_file_path, bool *is_valid);
15 CEED_EXTERN int CeedLoadSourceToBuffer(Ceed ceed, const char *source_file_path, char **buffer);
16 CEED_EXTERN int CeedLoadSourceAndInitializeBuffer(Ceed ceed, const char *source_file_path, CeedInt …
18 CEED_EXTERN int CeedLoadSourceToInitializedBuffer(Ceed ceed, const char *source_file_path, CeedInt …