Searched refs:SetTo (Results 1 - 25 of 1148) sorted by relevance

1234567891011>>

/haiku-fatelf/src/tests/kits/storage/
H A DFindDirectoryTest.cpp118 status_t error = volume.SetTo(device);
150 path.SetTo(homePath.Path(), "Desktop");
168 path.SetTo(homePath.Path(), "Desktop/Trash");
174 path.SetTo(recycledPath.Path(), "_BEOS_");
183 error = path.SetTo("/boot/beos");
186 error = path.SetTo("/boot/beos/system");
189 error = path.SetTo("/boot/beos/system/add-ons");
192 error = path.SetTo("/boot/beos/system/boot");
195 error = path.SetTo("/boot/beos/etc/fonts");
198 error = path.SetTo("/boo
[all...]
H A DSymLinkTest.cpp337 CPPUNIT_ASSERT( link.SetTo(fileLink) == B_OK );
341 CPPUNIT_ASSERT( link.SetTo(nonExisting) == B_ENTRY_NOT_FOUND );
345 CPPUNIT_ASSERT( equals(link.SetTo((const char *)NULL), B_BAD_VALUE,
350 CPPUNIT_ASSERT( link.SetTo("") == B_ENTRY_NOT_FOUND );
354 CPPUNIT_ASSERT( link.SetTo(existingFile) == B_OK );
358 CPPUNIT_ASSERT( link.SetTo(existingDir) == B_OK );
362 CPPUNIT_ASSERT( link.SetTo(tooLongEntryname) == B_NAME_TOO_LONG );
369 CPPUNIT_ASSERT( link.SetTo(&entry) == B_OK );
373 CPPUNIT_ASSERT( entry.SetTo(nonExisting) == B_OK );
374 CPPUNIT_ASSERT( link.SetTo(
[all...]
/haiku-fatelf/headers/os/package/hpkg/
H A DPackageAttributeValue.h38 inline void SetTo(int8 value);
39 inline void SetTo(uint8 value);
40 inline void SetTo(int16 value);
41 inline void SetTo(uint16 value);
42 inline void SetTo(int32 value);
43 inline void SetTo(uint32 value);
44 inline void SetTo(int64 value);
45 inline void SetTo(uint64 value);
46 inline void SetTo(const char* value);
60 BPackageAttributeValue::SetTo(int function in class:BPackageKit::BHPKG::BPackageAttributeValue
68 BPackageAttributeValue::SetTo(uint8 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
76 BPackageAttributeValue::SetTo(int16 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
84 BPackageAttributeValue::SetTo(uint16 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
92 BPackageAttributeValue::SetTo(int32 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
100 BPackageAttributeValue::SetTo(uint32 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
108 BPackageAttributeValue::SetTo(int64 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
116 BPackageAttributeValue::SetTo(uint64 value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
124 BPackageAttributeValue::SetTo(const char* value) function in class:BPackageKit::BHPKG::BPackageAttributeValue
[all...]
/haiku-fatelf/src/add-ons/kernel/file_systems/udf/
H A DUdfString.h36 void SetTo(const char *utf8);
37 void SetTo(const char *cs0, uint32 length);
39 void SetTo(const array<char, length> &dString);
65 SetTo(dString);
75 UdfString::SetTo(const array<char, length> &dString) function in class:UdfString
81 SetTo(NULL);
85 SetTo(reinterpret_cast<const char *>(dString.data), dataLength);
95 SetTo(dString);
H A DCachedBlock.h38 inline uint8 *SetTo(off_t block);
39 inline uint8 *SetTo(off_t block, off_t base, size_t length);
40 inline uint8 *SetTo(long_address address);
42 inline uint8* SetTo(Accessor &accessor, Descriptor &descriptor);
68 SetTo(block);
108 CachedBlock::SetTo(off_t block) function in class:CachedBlock
110 return SetTo(block, block, 1);
115 CachedBlock::SetTo(off_t block, off_t base, size_t length) function in class:CachedBlock
125 CachedBlock::SetTo(long_address address) function in class:CachedBlock
129 return SetTo(bloc
137 CachedBlock::SetTo(Accessor &accessor, Descriptor &descriptor) function in class:CachedBlock
[all...]
H A DDString.h33 void SetTo(const DString &ref);
34 void SetTo(const UdfString &string, uint8 fieldLength);
35 void SetTo(const char *utf8, uint8 fieldLength);
H A DDString.cpp27 SetTo(ref);
39 SetTo(string, fieldLength);
52 SetTo(utf8, fieldLength);
63 DString::SetTo(const DString &ref) function in class:DString
80 DString::SetTo(const UdfString &string, uint8 fieldLength) function in class:DString
120 DString::SetTo(const char *utf8, uint8 fieldLength) function in class:DString
123 SetTo(string, fieldLength);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A DUdfString.h35 void SetTo(const char *utf8);
36 void SetTo(const char *cs0, uint32 length);
38 void SetTo(const array<char, length> &dString);
65 SetTo(dString);
75 String::SetTo(const array<char, length> &dString) function in class:Udf::String
83 SetTo(NULL);
87 SetTo(reinterpret_cast<const char*>(dString.data), dataLength);
97 SetTo(dString);
H A DDString.h30 void SetTo(const DString &ref);
31 void SetTo(const Udf::String &string, uint8 fieldLength);
32 void SetTo(const char *utf8, uint8 fieldLength);
H A DDString.cpp21 SetTo(ref);
31 SetTo(string, fieldLength);
42 SetTo(utf8, fieldLength);
46 DString::SetTo(const DString &ref) function in class:DString
62 DString::SetTo(const Udf::String &string, uint8 fieldLength) function in class:DString
101 DString::SetTo(const char *utf8, uint8 fieldLength) function in class:DString
104 SetTo(string, fieldLength);
H A DCachedBlock.h52 inline uint8 *SetTo(off_t block, bool empty = false);
53 inline uint8 *SetTo(long_address address, bool empty = false);
55 inline uint8* SetTo(Accessor &accessor, Descriptor &descriptor,
87 SetTo(block, empty);
124 CachedBlock::SetTo(off_t block, bool empty = false) function in class:Udf::CachedBlock
136 CachedBlock::SetTo(long_address address, bool empty = false) function in class:Udf::CachedBlock
140 return SetTo(block, empty);
147 CachedBlock::SetTo(Accessor &accessor, Descriptor &descriptor, bool empty = false) function in class:Udf::CachedBlock
153 return SetTo(address, empty);
/haiku-fatelf/src/tests/kits/net/preflet/
H A DNetworkSetupProfile.cpp22 SetTo(path);
28 SetTo(ref);
34 SetTo(entry);
45 NetworkSetupProfile::SetTo(const char* path) function in class:NetworkSetupProfile
47 SetTo(new BEntry(path));
53 NetworkSetupProfile::SetTo(const entry_ref* ref) function in class:NetworkSetupProfile
55 SetTo(new BEntry(ref));
61 NetworkSetupProfile::SetTo(BEntry *entry) function in class:NetworkSetupProfile
H A DNetworkSetupProfile.h21 status_t SetTo(const char* path);
22 status_t SetTo(const entry_ref *ref);
23 status_t SetTo(BEntry *entry);
/haiku-fatelf/headers/private/shared/
H A DVariant.h52 inline void SetTo(const BVariant& other);
53 inline void SetTo(bool value);
54 inline void SetTo(int8 value);
55 inline void SetTo(uint8 value);
56 inline void SetTo(int16 value);
57 inline void SetTo(uint16 value);
58 inline void SetTo(int32 value);
59 inline void SetTo(uint32 value);
60 inline void SetTo(int64 value);
61 inline void SetTo(uint6
300 BVariant::SetTo(const BVariant& other) function in class:BVariant
308 BVariant::SetTo(bool value) function in class:BVariant
316 BVariant::SetTo(int8 value) function in class:BVariant
324 BVariant::SetTo(uint8 value) function in class:BVariant
332 BVariant::SetTo(int16 value) function in class:BVariant
340 BVariant::SetTo(uint16 value) function in class:BVariant
348 BVariant::SetTo(int32 value) function in class:BVariant
356 BVariant::SetTo(uint32 value) function in class:BVariant
364 BVariant::SetTo(int64 value) function in class:BVariant
372 BVariant::SetTo(uint64 value) function in class:BVariant
380 BVariant::SetTo(float value) function in class:BVariant
388 BVariant::SetTo(double value) function in class:BVariant
396 BVariant::SetTo(const BRect& value) function in class:BVariant
404 BVariant::SetTo(float left, float top, float right, float bottom) function in class:BVariant
412 BVariant::SetTo(const void* value) function in class:BVariant
420 BVariant::SetTo(const char* value, uint32 flags) function in class:BVariant
428 BVariant::SetTo(BReferenceable* value, type_code type) function in class:BVariant
[all...]
H A DReferenceable.h53 SetTo(object, alreadyHasReference);
60 SetTo(other.fObject);
69 SetTo(other.Get());
77 void SetTo(Type* object, bool alreadyHasReference = false) function in class:BReference
124 SetTo(other.fObject);
130 SetTo(other);
137 SetTo(other.Get());
/haiku-fatelf/src/apps/debuganalyzer/gui/main_window/
H A DThreadsPage.cpp45 value.SetTo(thread->ID());
48 value.SetTo(thread->Name(), B_VARIANT_DONT_COPY_DATA);
56 value.SetTo(buffer);
60 value.SetTo(thread->CreationTime());
63 value.SetTo(thread->DeletionTime());
66 value.SetTo(thread->Runs());
69 value.SetTo(thread->TotalRunTime());
72 value.SetTo(thread->Latencies());
75 value.SetTo(thread->TotalLatency());
78 value.SetTo(threa
[all...]
/haiku-fatelf/headers/private/storage/
H A DException.h37 SetTo(B_OK, format, args);
62 SetTo(error, format, args);
78 // SetTo
79 void SetTo(status_t error, BString description) function in class:BPrivate::Storage::Exception
82 fDescription.SetTo(description);
85 // SetTo
86 void SetTo(status_t error, const char* format, va_list arg) function in class:BPrivate::Storage::Exception
90 SetTo(error, BString(buffer));
/haiku-fatelf/src/kits/storage/sniffer/
H A DErr.cpp24 SetTo(msg, pos);
31 SetTo(msg, pos);
47 SetTo(ref.Msg(), ref.Pos());
52 Err::SetTo(const char *msg, const ssize_t pos) { function in class:Err
59 Err::SetTo(const std::string &msg, const ssize_t pos) { function in class:Err
60 return SetTo(msg.c_str(), pos);
/haiku-fatelf/src/tools/restest/
H A DException.h34 SetTo(B_OK, format, args);
59 SetTo(error, format, args);
75 // SetTo
76 void SetTo(status_t error, BString description) function in class:Exception
79 fDescription.SetTo(description);
82 // SetTo
83 void SetTo(status_t error, const char* format, va_list arg) function in class:Exception
87 SetTo(error, BString(buffer));
/haiku-fatelf/headers/os/net/
H A DNetworkAddress.h47 status_t SetTo(const char* address, uint16 port = 0,
49 status_t SetTo(const char* address, const char* service,
51 status_t SetTo(int family, const char* address,
53 status_t SetTo(int family, const char* address,
55 void SetTo(const sockaddr& address);
56 void SetTo(const sockaddr& address, size_t length);
57 void SetTo(const sockaddr_storage& address);
58 void SetTo(const sockaddr_in& address);
59 void SetTo(const sockaddr_in6& address);
60 void SetTo(cons
[all...]
H A DNetAddress.h37 status_t SetTo(const char* hostname, const char* protocol,
39 status_t SetTo(const char* hostname = NULL, unsigned short port = 0);
40 status_t SetTo(const struct sockaddr_in& addr);
41 status_t SetTo(in_addr addr, int port = 0);
42 status_t SetTo(uint32 addr = INADDR_ANY, int port = 0);
/haiku-fatelf/src/add-ons/disk_systems/intel/
H A DCreationParameterEditor.cpp60 parameters.SetTo("active true ;");
62 parameters.SetTo("active false ;");
64 parameters.SetTo("");
/haiku-fatelf/src/system/libroot/add-ons/icu/
H A DICUMessagesData.cpp31 ICUMessagesData::SetTo(const Locale& locale, const char* posixLocaleName) function in class:BPrivate::Libroot::ICUMessagesData
33 status_t result = inherited::SetTo(locale, posixLocaleName);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/btree/
H A DInode.cpp17 fFile.SetTo(name,B_CREATE_FILE | B_READ_WRITE | B_ERASE_FILE);
33 run.SetTo(0,0,1);
/haiku-fatelf/src/tests/kits/support/bstring/
H A DStringAssignTest.cpp44 //SetTo(const char *) (NULL)
47 str->SetTo(s);
53 str->SetTo("BLA");
57 //SetTo(BString&)
60 str->SetTo(string);
64 //SetTo(char, int32)
67 str->SetTo('C', 10);
73 str->SetTo('C', 0);
77 //SetTo(const char*, int32)
80 str->SetTo("AB
[all...]

Completed in 174 milliseconds

1234567891011>>