Searched refs:nothrow (Results 1 - 25 of 1184) sorted by relevance

1234567891011>>

/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DRequestFactory.cpp26 *request = new(std::nothrow) InitConnectionRequest;
29 *request = new(std::nothrow) InitConnectionReply;
32 *request = new(std::nothrow) MountRequest;
35 *request = new(std::nothrow) MountReply;
38 *request = new(std::nothrow) UnmountRequest;
41 *request = new(std::nothrow) ReadVNodeRequest;
44 *request = new(std::nothrow) ReadVNodeReply;
47 *request = new(std::nothrow) WriteStatRequest;
50 *request = new(std::nothrow) WriteStatReply;
53 *request = new(std::nothrow) CreateFileReques
[all...]
H A DConnectionFactory.cpp29 connection = new(std::nothrow) InsecureConnection;
31 connection = new(std::nothrow) PortConnection;
/haiku/src/apps/icon-o-matic/
H A DUtil.cpp19 using std::nothrow;
26 *style = new (nothrow) Style(color);
30 *command = new (nothrow) AddStylesCommand(
48 *path = new (nothrow) VectorPath(*other);
50 *path = new (nothrow) VectorPath();
57 *command = new (nothrow) AddPathsCommand(
/haiku/src/tests/system/kernel/unit/lock/
H A DLockTestSuite.cpp15 TestSuite* suite = new(std::nothrow) TestSuite("lock");
/haiku/src/kits/network/libnetservices/
H A DUrlProtocolRoster.cpp30 return new(std::nothrow) BHttpRequest(url, output, false, "HTTP",
33 return new(std::nothrow) BHttpRequest(url, output, true, "HTTPS",
36 return new(std::nothrow) BFileRequest(url, output, listener, context);
38 return new(std::nothrow) BDataRequest(url, output, listener, context);
40 return new(std::nothrow) BGopherRequest(url, output, listener, context);
/haiku/src/add-ons/disk_systems/intel/
H A DIntelDiskSystem.cpp16 using std::nothrow;
23 PartitionMapAddOn* partitionMapAddOn = new(nothrow) PartitionMapAddOn;
25 = new(nothrow) ExtendedPartitionAddOn;
/haiku/src/add-ons/disk_systems/gpt/
H A DGPTDiskSystem.cpp17 GPTDiskAddOn* addOn = new(std::nothrow) GPTDiskAddOn();
/haiku/src/system/boot/platform/atari_m68k/
H A Dmenu.cpp23 menu->AddItem(item = new(nothrow) MenuItem("Select screen resolution", video_mode_menu()));
27 menu->AddItem(item = new(nothrow) MenuItem("Use fail-safe graphics driver"));
35 menu->AddItem(item = new(nothrow) MenuItem("Don't call the BIOS"));
38 menu->AddItem(item = new(nothrow) MenuItem("Disable APM"));
43 menu->AddItem(item = new(nothrow) MenuItem("Disable ACPI"));
/haiku/src/system/boot/platform/amiga_m68k/
H A Dmenu.cpp22 menu->AddItem(item = new(nothrow) MenuItem("Select screen resolution", video_mode_menu()));
26 menu->AddItem(item = new(nothrow) MenuItem("Use fail-safe graphics driver"));
34 menu->AddItem(item = new(nothrow) MenuItem("Don't call the BIOS"));
37 menu->AddItem(item = new(nothrow) MenuItem("Disable APM"));
42 menu->AddItem(item = new(nothrow) MenuItem("Disable ACPI"));
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DDirectory.cpp25 ShortDirectory* shortDir = new(std::nothrow) ShortDirectory(inode);
34 Extent* extentDir = new(std::nothrow) Extent(inode);
47 LeafDirectory* leafDir = new(std::nothrow) LeafDirectory(inode);
60 NodeDirectory* nodeDir = new(std::nothrow) NodeDirectory(inode);
75 TreeDirectory* treeDir = new(std::nothrow) TreeDirectory(inode);
H A DAttribute.cpp24 ShortAttribute* shortAttr = new(std::nothrow) ShortAttribute(inode);
33 LeafAttribute* leafAttr = new(std::nothrow) LeafAttribute(inode);
43 NodeAttribute* nodeAttr = new(std::nothrow) NodeAttribute(inode);
/haiku/src/apps/debugger/user_interface/cli/
H A DCommandLineUserInterface.cpp177 return new(std::nothrow) CommandLineUserInterface;
307 if (_RegisterCommand("bt sc", new(std::nothrow) CliStackTraceCommand)
308 && _RegisterCommand("continue", new(std::nothrow) CliContinueCommand)
309 && _RegisterCommand("db", new(std::nothrow)
311 && _RegisterCommand("ds", new(std::nothrow)
313 && _RegisterCommand("dw", new(std::nothrow)
315 && _RegisterCommand("dl", new(std::nothrow)
317 && _RegisterCommand("frame", new(std::nothrow) CliStackFrameCommand)
318 && _RegisterCommand("help", new(std::nothrow) HelpCommand(this))
319 && _RegisterCommand("print", new(std::nothrow) CliPrintVariableComman
[all...]
/haiku/src/servers/app/
H A DOffscreenWindow.cpp23 using std::nothrow;
30 0, 0, window, new (nothrow) DrawingEngine()),
32 fHWInterface(new (nothrow) BitmapHWInterface(fBitmap))
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DFFmpegPlugin.cpp51 return new(std::nothrow) AVCodecDecoder();
59 return new(std::nothrow) AVFormatReader();
73 return new(std::nothrow) AVFormatWriter();
92 return new(std::nothrow)AVCodecEncoder(codecInfo.sub_id,
105 return new(std::nothrow)AVCodecEncoder(
139 return new(std::nothrow) FFmpegPlugin;
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DConnectionListenerFactory.cpp31 listener = new(std::nothrow) InsecureConnectionListener;
33 listener = new(std::nothrow) PortConnectionListener;
H A DNodeMonitor.cpp56 event = new(std::nothrow) EntryCreatedEvent;
59 event = new(std::nothrow) EntryRemovedEvent;
62 event = new(std::nothrow) EntryMovedEvent;
65 event = new(std::nothrow) StatChangedEvent;
68 event = new(std::nothrow) AttributeChangedEvent;
71 event = new(std::nothrow) VolumeMountedEvent;
74 event = new(std::nothrow) VolumeUnmountedEvent;
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamilySyntaxHighlighter.cpp36 Tokenizer* tokenizer = new(std::nothrow) Tokenizer();
41 _info = new(std::nothrow) CLanguageFamilySyntaxHighlightInfo(source,
/haiku/src/apps/mediaplayer/playlist/
H A DPLItemsCommand.cpp16 using std::nothrow;
/haiku/src/kits/debugger/target_host_interface/network/
H A DNetworkTargetHostInterfaceInfo.cpp37 fDescription = new(std::nothrow) SettingsDescription;
41 Setting* setting = new(std::nothrow) StringSettingImpl(kHostnameSetting,
49 setting = new(std::nothrow) BoundedSettingImpl(kPortSetting, "Port",
97 = new(std::nothrow) NetworkTargetHostInterface;
/haiku/src/kits/package/
H A DDownloadFileRequest.cpp55 FetchFileJob* fetchJob = new (std::nothrow) FetchFileJob(fContext,
70 ValidateChecksumJob* validateJob = new (std::nothrow) ValidateChecksumJob(
72 new (std::nothrow) StringChecksumAccessor(fChecksum),
73 new (std::nothrow) GeneralFileChecksumAccessor(fTargetEntry, true));
/haiku/src/apps/icon-o-matic/document/
H A DDocument.cpp23 using std::nothrow;
30 fIcon(new (nothrow) _ICON_NAMESPACE Icon()),
31 fCommandStack(new (nothrow) ::CommandStack()),
32 fSelection(new (nothrow) ::Selection()),
/haiku/src/apps/icon-o-matic/style/
H A DSetGradientCommand.cpp25 using std::nothrow;
32 fGradient(gradient ? new (nothrow) Gradient(*gradient) : NULL)
65 clone = new (nothrow) Gradient(*fGradient);
75 fGradient = new (nothrow) Gradient(*fStyle->Gradient());
/haiku/src/system/boot/loader/net/
H A DNetStack.cpp19 using std::nothrow;
54 fEthernetService = new(nothrow) EthernetService;
59 fARPService = new(nothrow) ARPService(fEthernetService);
67 fIPService = new(nothrow) IPService(fEthernetService, fARPService);
75 fUDPService = new(nothrow) UDPService(fIPService);
84 fTCPService = new(nothrow) TCPService(fIPService);
102 NetStack *netStack = new(nothrow) NetStack;
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DIndexDirectory.cpp23 fNameIndex = new(nothrow) NameIndex(volume);
24 fLastModifiedIndex = new(nothrow) LastModifiedIndex(volume);
25 fSizeIndex = new(nothrow) SizeIndex(volume);
83 index = new(nothrow) AttributeIndexImpl(fVolume,
87 index = new(nothrow) AttributeIndexImpl(fVolume,
91 index = new(nothrow) AttributeIndexImpl(fVolume,
95 index = new(nothrow) AttributeIndexImpl(fVolume,
99 index = new(nothrow) AttributeIndexImpl(fVolume,
103 index = new(nothrow) AttributeIndexImpl(fVolume,
107 index = new(nothrow) AttributeIndexImp
[all...]
/haiku/src/system/boot/platform/bios_ia32/
H A Dmenu.cpp44 item = new(std::nothrow) MenuItem("Select screen resolution",
56 item = new(std::nothrow) MenuItem("Use fail-safe graphics driver");
67 item = new(std::nothrow) MenuItem("Don't call the BIOS");
75 item = new(std::nothrow) MenuItem("Disable APM");
85 item = new(std::nothrow) MenuItem("Disable ACPI");

Completed in 261 milliseconds

1234567891011>>