Lines Matching +defs:mode +defs:name
344 if (key == "name") {
437 if (std::optional<llvm::StringRef> name =
440 response.PutStringAsRawHex8(*name);
457 if (std::optional<llvm::StringRef> name =
460 response.PutStringAsRawHex8(*name);
502 #define HANDLE_ERRNO(name, value) \
503 case name: \
504 return GDB_##name;
521 mode_t mode = packet.GetHexMaxU32(false, 0600);
525 auto file = FileSystem::Instance().Open(path_spec, flags, mode, false);
665 packet.SetFilePos(::strlen("vFile:mode:"));
672 const uint32_t mode = FileSystem::Instance().GetPermissions(file_spec, ec);
674 if (mode != llvm::sys::fs::perms_not_known)
675 response.Printf("F%x", mode);
853 mode_t mode = packet.GetHexMaxU32(false, UINT32_MAX);
857 Status error(llvm::sys::fs::create_directory(path, mode));
1215 response.PutCString("name:");