Deleted Added
full compact
Host.h (258054) Host.h (258884)
1//===-- Host.h --------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 496 unchanged lines hidden (view full) ---

505 static Error
506 DynamicLibraryClose (void *dynamic_library_handle);
507
508 static void *
509 DynamicLibraryGetSymbol (void *dynamic_library_handle,
510 const char *symbol_name,
511 Error &error);
512
1//===-- Host.h --------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 496 unchanged lines hidden (view full) ---

505 static Error
506 DynamicLibraryClose (void *dynamic_library_handle);
507
508 static void *
509 DynamicLibraryGetSymbol (void *dynamic_library_handle,
510 const char *symbol_name,
511 Error &error);
512
513 static uint32_t
514 MakeDirectory (const char* path, mode_t mode);
513 static Error
514 MakeDirectory (const char* path, uint32_t mode);
515
515
516 static Error
517 GetFilePermissions (const char* path, uint32_t &file_permissions);
518
519 static Error
520 SetFilePermissions (const char* path, uint32_t file_permissions);
521
522 static Error
523 Symlink (const char *src, const char *dst);
524
525 static Error
526 Readlink (const char *path, char *buf, size_t buf_len);
527
528 static Error
529 Unlink (const char *path);
530
516 static lldb::user_id_t
517 OpenFile (const FileSpec& file_spec,
518 uint32_t flags,
531 static lldb::user_id_t
532 OpenFile (const FileSpec& file_spec,
533 uint32_t flags,
519 mode_t mode,
534 uint32_t mode,
520 Error &error);
521
522 static bool
523 CloseFile (lldb::user_id_t fd,
524 Error &error);
525
526 static uint64_t
527 WriteFile (lldb::user_id_t fd,

--- 29 unchanged lines hidden ---
535 Error &error);
536
537 static bool
538 CloseFile (lldb::user_id_t fd,
539 Error &error);
540
541 static uint64_t
542 WriteFile (lldb::user_id_t fd,

--- 29 unchanged lines hidden ---