Home
last modified time | relevance | path

Searched refs:rootPath (Results 1 – 11 of 11) sorted by relevance

/haiku/src/system/boot/platform/pxe_ia32/
H A Ddevices.cpp53 const char* rootPath = sTFTP.RootPath(); in platform_add_boot_device() local
54 if (rootPath) { in platform_add_boot_device()
55 if (char* fileNameEnd = strchr(rootPath, ';')) { in platform_add_boot_device()
56 size_t len = min_c(fileNameEnd - rootPath, in platform_add_boot_device()
58 memcpy(stackFileName, rootPath, len); in platform_add_boot_device()
151 const char* rootPath = sTFTP.RootPath(); in platform_register_boot_device() local
152 if (rootPath) { in platform_register_boot_device()
153 if (char* fileNameEnd = strchr(rootPath, ';')) in platform_register_boot_device()
154 rootPath = fileNameEnd + 1; in platform_register_boot_device()
164 && gBootVolume.AddString("net root path", rootPath) in platform_register_boot_device()
/haiku/src/kits/device/
H A DJoystickTweaker.cpp83 _BJoystickTweaker::_ScanIncludingDisabled(const char *rootPath, BList *list, in _ScanIncludingDisabled() argument
90 else if (rootPath != NULL) in _ScanIncludingDisabled()
91 root.SetTo(rootPath); in _ScanIncludingDisabled()
100 status_t result = _ScanIncludingDisabled(rootPath, list, &entry); in _ScanIncludingDisabled()
116 deviceName->RemoveFirst(rootPath); in _ScanIncludingDisabled()
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioAddOn.cpp177 MultiAudioAddOn::_RecursiveScan(const char* rootPath, BEntry* rootEntry, uint32 depth) in _RecursiveScan() argument
186 else if (rootPath != NULL) in _RecursiveScan()
187 root.SetTo(rootPath); in _RecursiveScan()
196 _RecursiveScan(rootPath, &entry, depth + 1); in _RecursiveScan()
202 + strlen(rootPath), path.Path()); in _RecursiveScan()
/haiku/src/add-ons/media/media-add-ons/esound_sink/
H A DESDSinkAddOn.cpp233 else if(rootPath!=NULL) { in SetupDefaultSinks()
234 root.SetTo(rootPath); in SetupDefaultSinks()
245 RecursiveScan(rootPath, &entry); in SetupDefaultSinks()
249 ESDEndpoint *device = new ESDEndpoint(path.Path() + strlen(rootPath), path.Path()); in SetupDefaultSinks()
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DRadeonAddOn.cpp381 CRadeonAddOn::RecursiveScan(const char* rootPath, BEntry *rootEntry = NULL) in RecursiveScan() argument
387 else if( rootPath != NULL ) { in RecursiveScan()
388 root.SetTo( rootPath ); in RecursiveScan()
399 RecursiveScan( rootPath, &entry ); in RecursiveScan()
H A DRadeonAddOn.h93 status_t RecursiveScan( const char* rootPath, BEntry *rootEntry = NULL );
/haiku/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundAddOn.cpp196 OpenSoundAddOn::RecursiveScan(const char* rootPath, BEntry *rootEntry) in RecursiveScan() argument
350 else if (rootPath != NULL) { in RecursiveScan()
351 root.SetTo(rootPath); in RecursiveScan()
364 OpenSoundDevice *device = new OpenSoundDevice(path.Path() + strlen(rootPath), path.Path()); in RecursiveScan()
/haiku/src/preferences/joysticks/
H A DJoyWin.cpp279 JoyWin::_AddToList(BListView *list, uint32 command, const char* rootPath, in _AddToList() argument
286 else if ( rootPath != NULL ) in _AddToList()
287 root.SetTo( rootPath ); in _AddToList()
294 _AddToList(list, command, rootPath, &entry); in _AddToList()
299 str.RemoveFirst(rootPath); in _AddToList()
H A DJoyWin.h34 const char* rootPath, BEntry *rootEntry = NULL);
/haiku/headers/private/device/
H A DJoystickTweaker.h52 status_t _ScanIncludingDisabled(const char *rootPath,
/haiku/src/system/kernel/fs/
H A Dvfs_net_boot.cpp353 const char* rootPath = fBootVolume.GetString("net root path", NULL); in Init() local
355 rootPath); in Init()