diff options
author | Jee-Yong Um <jc9.um@samsung.com> | 2016-11-28 11:05:28 -0800 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2016-11-28 11:35:27 -0800 |
commit | e037f30be40de25a492f7d10c7c6923a8218316a (patch) | |
tree | 4e165fadb844d5b4f057fb0376692b53089d8391 | |
parent | 6c04755a922d396356a561b85e010105e6ff61ae (diff) | |
download | efl-e037f30be40de25a492f7d10c7c6923a8218316a.tar.gz |
efl.io.manager: fix eo types and indent
Reviewers: cedric, jpeg
Differential Revision: https://phab.enlightenment.org/D4413
Signed-off-by: Cedric BAIL <cedric@osg.samsung.com>
-rw-r--r-- | src/lib/eio/efl_io_manager.eo | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/eio/efl_io_manager.eo b/src/lib/eio/efl_io_manager.eo index 25756fadba..4e7961aacb 100644 --- a/src/lib/eio/efl_io_manager.eo +++ b/src/lib/eio/efl_io_manager.eo @@ -24,18 +24,18 @@ class Efl.Io.Manager (Efl.Loop_User) [[Lists entries in a given path with more information.]] params { @in path: string;[[Path we want to list entries for]] - @in recursive: bool; [[If $true, list entries recursively, $false otherwise]] + @in recursive: bool; [[If $true, list entries recursively, $false otherwise]] } - return: future<uint64, const(array<Eina_File_Direct_Info>)>; [[List of entries in path]] + return: future<uint64, const(array<Eina.File.Direct.Info>)>; [[List of entries in path]] } stat_ls { [[Lists entries in a given path with stat information.]] params { @in path: string;[[Path we want to list entries for]] - @in recursive: bool; [[If $true, list entries recursively, $false otherwise]] + @in recursive: bool; [[If $true, list entries recursively, $false otherwise]] } - return: future<uint64, const(array<Eina_File_Direct_Info>)>; [[List of entries in path]] + return: future<uint64, const(array<Eina.File.Direct.Info>)>; [[List of entries in path]] } // Extended attributes @@ -52,7 +52,7 @@ class Efl.Io.Manager (Efl.Loop_User) params { @in path: string; [[Path we want to get stat information for]] } - return: future<Eina_Stat>; [[Stat information]] + return: future<Eina.Stat>; [[Stat information]] } // FIXME: Add helper for Eina.Value to Xattr @@ -60,7 +60,7 @@ class Efl.Io.Manager (Efl.Loop_User) [[Retrieves or sets information of a given extended attribute.]] set { values { - data: ptr(Eina.Binbuf); [[Data to set as information]] + data: ptr(Eina.Binbuf); [[Data to set as information]] flags: Eina.Xattr.Flags; [[Extended attributes flags]] } return: future<uint64>; [[Future for asynchronous set operation]] @@ -70,7 +70,7 @@ class Efl.Io.Manager (Efl.Loop_User) } keys { path: string; [[File path]] - attribute: string; [[Attribute name]] + attribute: string; [[Attribute name]] } } |