-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adopt function signature from FI directly (#106)
* [x] Use the function signatures provided in FI API. * [x] Remove our function signature generation code. * [x] Update all benchmarks.
- Loading branch information
Showing
323 changed files
with
2,068 additions
and
2,066 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
"functions": | ||
- "name": "aug_save" | ||
"params": | ||
- "name": "aug" | ||
"type": "struct augeas *" | ||
"return_type": "int" | ||
"signature": "int aug_save(augeas *)" | ||
- "name": "tree_save" | ||
"params": | ||
- "name": "aug" | ||
"type": "struct augeas *" | ||
- "name": "tree" | ||
"type": "struct tree *" | ||
- "name": "path" | ||
"type": "char *" | ||
"return_type": "int" | ||
"signature": "int tree_save(augeas *, tree *, const char *)" | ||
- "name": "transform_save" | ||
"params": | ||
- "name": "aug" | ||
"type": "struct augeas *" | ||
- "name": "xfm" | ||
"type": "struct tree *" | ||
- "name": "path" | ||
"type": "char *" | ||
- "name": "tree" | ||
"type": "struct tree *" | ||
"return_type": "int" | ||
"signature": "int transform_save(augeas *, tree *, const char *, tree *)" | ||
- "name": "aug_preview" | ||
"params": | ||
- "name": "aug" | ||
"type": "struct augeas *" | ||
- "name": "path" | ||
"type": "char *" | ||
- "name": "out" | ||
"type": "char **" | ||
"return_type": "int" | ||
"signature": "int aug_preview(augeas *, const char *, char **)" | ||
- "name": "aug_text_retrieve" | ||
"params": | ||
- "name": "aug" | ||
"type": "struct augeas *" | ||
- "name": "lens" | ||
"type": "char *" | ||
- "name": "node_in" | ||
"type": "char *" | ||
- "name": "path" | ||
"type": "char *" | ||
- "name": "node_out" | ||
"type": "char *" | ||
"return_type": "int" | ||
"signature": "int aug_text_retrieve(augeas *, const char *, const char *, const char *, const char *)" | ||
"language": "c++" | ||
"project": "augeas" | ||
"target_name": "augeas_escape_name_fuzzer" | ||
"target_path": "/src/augeas_escape_name_fuzzer.cc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.