Searched refs:store (Results 1 - 25 of 27) sorted by path

12

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex40 Resources provide a means to store structured but flat data in files. Unlike
/haiku/headers/os/add-ons/network_settings/
H A DNetworkSettings.h99 const char* store = NULL);
/haiku/src/apps/cortex/addons/AudioAdapter/
H A DAudioAdapterParams.h61 status_t store(int32 parameterID, const void* data, size_t size);
H A DAudioAdapterParams.cpp44 _AudioAdapterParams::store(int32 parameterID, const void* data, size_t size) function in class:_AudioAdapterParams
/haiku/src/apps/cortex/addons/audioOps/
H A DNullAudioOp.cpp76 status_t store( function in class:_NullParameterSet
/haiku/src/apps/cortex/addons/common/
H A DIParameterSet.cpp55 return store(parameterID, data, size);
H A DIParameterSet.h77 virtual status_t store(
/haiku/src/kits/network/libnetapi/
H A DNetworkSettings.cpp882 const char* nameField, const char* name, const char* store)
888 if (store != NULL)
889 return _Save(store);
1739 // This address will be created automatically, no need to store it
881 _RemoveItem(BMessage& container, const char* itemField, const char* nameField, const char* name, const char* store) argument
/haiku/src/system/kernel/slab/
H A DObjectDepot.cpp251 depot_cpu_store* store = object_depot_cpu(depot); local
260 if (store->loaded == NULL)
264 if (!store->loaded->IsEmpty())
265 return store->loaded->Pop();
267 if (store->previous
268 && (store->previous->IsFull()
269 || exchange_with_full(depot, store->previous))) {
270 std::swap(store->previous, store->loaded);
283 depot_cpu_store* store local
343 depot_cpu_store& store = depot->stores[i]; local
388 depot_cpu_store& store = depot->stores[i]; local
[all...]
/haiku/src/system/kernel/vm/
H A DVMAnonymousNoSwapCache.cpp30 // store. I have not done this because once we have a swap file backing up
46 "at %p\n", canOvercommit ? "yes" : "no", numGuardPages, store));
115 // no place to write, this will cause the page daemon to skip this store
/haiku/src/system/libroot/os/arch/generic/
H A Dgeneric_atomic.cpp15 obj.store(value, std::memory_order_release);
72 obj.store(value, std::memory_order_release);
/haiku/src/system/libroot/posix/glibc/arch/sparc/
H A Dadd_n.S2 store sum in a third limb vector.
49 stx %g1,[%o0+%o5] ! store result
H A Dsub_n.S2 and store difference in a third limb vector.
46 stx %g1,[%o0+%o5] ! store result
/haiku/src/tests/kits/midi/
H A Dtest1.cpp12 BMidiStore * store = new BMidiStore(); local
20 store->Import(&e_ref);
21 store->Connect(text);
23 store->Start();
24 while (store->IsRunning()) {
27 store->Stop();
33 store->Disconnect(text);
34 delete store;
/haiku/src/tests/system/kernel/slab/
H A DSlab.cpp260 BaseDepot::ObtainFromStore(CPUStore *store) argument
262 BenaphoreLocker _(store->lock);
271 if (store->loaded == NULL)
275 if (!_IsMagazineEmpty(store->loaded))
276 return _PopMagazine(store->loaded);
278 if (store->previous && (_IsMagazineFull(store->previous)
279 || _ExchangeWithFull(store->previous)))
280 std::swap(store->previous, store
288 ReturnToStore(CPUStore *store, void *object) argument
[all...]
H A DSlab.h499 void *ObtainFromStore(CPUStore *store);
500 bool ReturnToStore(CPUStore *store, void *object);
/haiku/
H A Dconfigure90 available, they will be used to store hashes for
132 stored in /path/to/haiku_source/generated. To store objects in a non-default
/haiku/headers/private/graphics/intel_extreme/
H A Dintel_extreme.h1858 uint32 store[1008]; member in struct:hardware_status
/haiku/src/bin/network/ftpd/
H A Dextern.h66 void store(char *, char *, int);
H A Dftpcmd.y576 store($4, "w", 0);
583 store($4, "a", 0);
796 store($4, "w", 1);
H A Dftpd.c1763 store(char *name, char *mode, int unique) function
/haiku/src/kits/network/libnetservices2/
H A DHttpSession.cpp210 fQuitting.store(true);
262 fMaxConnectionsPerHost.store(maxConnections, std::memory_order_relaxed);
271 fMaxHosts.store(maxConnections, std::memory_order_relaxed);
/haiku/src/servers/registrar/
H A DAuthenticationManager.cpp238 passwd* WriteFlatPasswd(FlatStore& store) const
244 passwd.pw_name = store.AppendString(fName);
245 passwd.pw_passwd = store.AppendString(fPassword);
246 passwd.pw_dir = store.AppendString(fHome);
247 passwd.pw_shell = store.AppendString(fShell);
248 passwd.pw_gecos = store.AppendString(fRealName);
250 return store.AppendData(passwd);
253 spwd* WriteFlatShadowPwd(FlatStore& store) const
257 spwd.sp_namp = store.AppendString(fName);
258 spwd.sp_pwdp = store
807 FlatStore store; local
838 FlatStore store; local
874 FlatStore store; local
[all...]
/haiku/src/system/kernel/arch/riscv64/
H A DRISCV64VMTranslationMap.cpp210 pte->store(newPte);
355 pte->store(newPte);
/haiku/src/system/kernel/arch/x86/paging/64bit/
H A DX86PagingMethod64Bit.h131 entry.store(newEntry, std::memory_order_relaxed);

Completed in 206 milliseconds

12