path_open method

  1. @override
  2. @JSExport()
int path_open(
  1. int fd,
  2. int dirflags,
  3. int pathPtr,
  4. int pathLen,
  5. int oflags,
  6. Object? rightsBase,
  7. Object? rightsInheriting,
  8. int fdflags,
  9. int openedFdPtr,
)
override

Implementation

@override
@JSExport()
int path_open(
  int fd,
  int dirflags,
  int pathPtr,
  int pathLen,
  int oflags,
  Object? rightsBase,
  Object? rightsInheriting,
  int fdflags,
  int openedFdPtr,
) => _call('path_open', [
  fd,
  dirflags,
  pathPtr,
  pathLen,
  oflags,
  rightsBase,
  rightsInheriting,
  fdflags,
  openedFdPtr,
]);