Searched refs:id (Results 51 - 75 of 1213) sorted by relevance

1234567891011>>

/haiku/src/system/libroot/posix/sys/
H A Dwait.cpp95 waitid(idtype_t idType, id_t id, siginfo_t* info, int options) argument
97 // translate the idType, id pair to a waitpid() style ID
101 id = -1;
106 if (id <= 0)
112 if (id <= 1)
114 id = -id;
121 pid_t child = _kern_wait_for_child(id, options, info, NULL);
/haiku/src/system/libroot/posix/musl/math/
H A Datan.c67 int id; local
85 id = -1;
90 id = 0;
93 id = 1;
98 id = 2;
101 id = 3;
112 if (id < 0)
114 z = atanhi[id] - (x*(s1+s2) - atanlo[id] - x);
/haiku/src/kits/storage/disk_device/
H A DPartitionReference.h18 PartitionReference(partition_id id = -1,
22 void SetTo(partition_id id, int32 changeCounter);
25 void SetPartitionID(partition_id id);
/haiku/src/system/boot/loader/file_systems/bfs/
H A DDirectory.cpp36 Directory::Directory(Volume &volume, off_t id) argument
38 fStream(volume, id),
90 off_t id; local
91 if (fTree.Find((uint8 *)name, strlen(name), &id) < B_OK)
94 return Stream::NodeFactory(fStream.GetVolume(), id);
103 off_t id; local
105 return iterator->GetNextEntry(name, &length, size, &id);
115 off_t id; local
117 status_t status = iterator->GetNextEntry(name, &length, sizeof(name), &id);
121 *_node = Stream::NodeFactory(fStream.GetVolume(), id);
150 off_t id; local
[all...]
/haiku/src/kits/media/
H A DDormantNodeManager.cpp88 ERROR("Forcing unload of add-on id %" B_PRId32 " with usecount %"
96 DormantNodeManager::GetAddOn(media_addon_id id) argument
98 TRACE("DormantNodeManager::GetAddon, id %" B_PRId32 "\n", id);
101 BMediaAddOn* addOn = _LookupAddOn(id);
109 if (FindAddOnPath(&path, id) != B_OK) {
111 B_PRId32 "\n", id);
118 if (_LoadAddOn(path.Path(), id, &newAddOn, &image) != B_OK) {
120 " from path %s\n",id, path.Path());
130 addOn = _LookupAddOn(id);
155 PutAddOn(media_addon_id id) argument
184 PutAddOnDelayed(media_addon_id id) argument
229 UnregisterAddOn(media_addon_id id) argument
245 FindAddOnPath(BPath* path, media_addon_id id) argument
262 _LookupAddOn(media_addon_id id) argument
280 _LoadAddOn(const char* path, media_addon_id id, BMediaAddOn** _newAddOn, image_id* _newImage) argument
[all...]
/haiku/headers/private/libroot/
H A Dimage_private.h15 status_t get_image_symbol_etc(image_id id, char const* symbolName,
/haiku/src/kits/textencoding/
H A DCharacterSet.cpp7 id = 0;
20 id = _id;
37 return id;
43 return id-1;
/haiku/src/servers/net/
H A DPPPServer.cpp63 ppp_interface_id id; local
64 if (message->FindInt32("interface", reinterpret_cast<int32*>(&id)) != B_OK)
72 CreateConnectionRequestWindow(id);
77 PPPServer::CreateConnectionRequestWindow(ppp_interface_id id) argument
/haiku/src/system/kernel/device_manager/
H A Did_generator.h19 status_t dm_free_id(const char *name, uint32 id);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInodeIdMap.h27 const char* name, ino_t id);
28 bool RemoveName(ino_t id,
31 status_t RemoveEntry(ino_t id);
33 ino_t id);
/haiku/src/kits/tracker/
H A DBitmaps.h62 const void* LoadResource(type_code type, int32 id,
70 status_t GetIconResource(int32 id, icon_size size, BBitmap* dest) const;
76 status_t GetIconResource(int32 id, const uint8** iconData,
81 status_t GetBitmapResource(type_code type, int32 id, BBitmap** out) const;
84 // id is looked up, and a BBitmap created from it and returned
/haiku/src/libs/compat/freebsd_iflib/
H A Dkthread.cpp24 thread_id id = spawn_kernel_thread((status_t (*)(void *))func, /* HACK! */ local
26 if (id < 0)
27 return id;
29 intptr_t thread = id;
/haiku/src/apps/processcontroller/
H A DPCWorld.h27 extern thread_id id;
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/
H A Dif_rtwn_beacon.c51 rtwn_reset_beacon_valid(struct rtwn_softc *sc, int id) argument
54 KASSERT (id == 0 || id == 1, ("wrong port id %d\n", id));
57 rtwn_setbits_1_shift(sc, sc->bcn_status_reg[id],
62 __func__, id);
66 rtwn_check_beacon_valid(struct rtwn_softc *sc, int id) argument
71 if (id == RTWN_VAP_ID_INVALID)
74 reg = sc->bcn_status_reg[id];
91 rtwn_switch_bcnq(struct rtwn_softc *sc, int id) argument
[all...]
/haiku/src/libs/compat/openbsd_wlan/net80211/
H A Dieee80211_rssadapt.c176 const struct ieee80211_rssdesc *id)
184 if (id->id_rateidx >= rs->rs_nrates) {
187 ether_sprintf((u_int8_t *)ni->ni_macaddr), id->id_rateidx,
196 if (id->id_len <= top)
200 last_thr = ra->ra_rate_thresh[thridx][id->id_rateidx];
201 ra->ra_rate_thresh[thridx][id->id_rateidx] =
203 (id->id_rssi << 8));
207 id->id_rssi, id->id_len,
208 (rs->rs_rates[id
174 ieee80211_rssadapt_lower_rate(struct ieee80211com *ic, const struct ieee80211_node *ni, struct ieee80211_rssadapt *ra, const struct ieee80211_rssdesc *id) argument
214 ieee80211_rssadapt_raise_rate(struct ieee80211com *ic, struct ieee80211_rssadapt *ra, const struct ieee80211_rssdesc *id) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/video_mixer/
H A DBufferMixer.h20 void AddBuffer(int32 id, BBuffer *buffer, bool isPrimary);
21 void RemoveBuffer(int32 id);
/haiku/headers/os/midi2/
H A DMidiRoster.h35 static BMidiEndpoint *NextEndpoint(int32 *id);
36 static BMidiProducer *NextProducer(int32 *id);
37 static BMidiConsumer *NextConsumer(int32 *id);
39 static BMidiEndpoint *FindEndpoint(int32 id, bool localOnly = false);
40 static BMidiProducer *FindProducer(int32 id, bool localOnly = false);
41 static BMidiConsumer *FindConsumer(int32 id, bool localOnly = false);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DVNode.cpp54 VNode::VNode(ino_t id) argument
56 fDirID(GetDirIDFor(id)),
57 fObjectID(GetObjectIDFor(id)),
78 VNode::SetTo(ino_t id) argument
80 return SetTo(GetDirIDFor(id), GetObjectIDFor(id));
/haiku/src/add-ons/kernel/network/protocols/unix/
H A DUnixAddressManager.h85 int32 id = fNextInternalID; local
86 fNextInternalID = (id + 1) & 0xfffff;
87 return id;
93 int32 id = NextInternalID(); local
94 UnixAddress address(id);
96 return id;
/haiku/src/apps/patchbay/
H A DPatchView.h49 void AddProducer(int32 id);
50 void AddConsumer(int32 id);
51 void RemoveProducer(int32 id);
52 void RemoveConsumer(int32 id);
53 void UpdateProducerProps(int32 id, const BMessage* props);
54 void UpdateConsumerProps(int32 id, const BMessage* props);
/haiku/src/bin/
H A Dlistport.c20 void list_team_ports (team_id id);
70 list_team_ports(team_id id) argument
76 if (get_team_info(id, &this_team) == B_BAD_TEAM_ID) {
77 printf("\nteam %" B_PRId32 " unknown\n", id);
81 printf("\nTEAM %4" B_PRId32 " (%s):\n", id, this_team.args);
85 while (get_next_port_info(id, &cookie, &this_port) == B_OK) {
H A Ddiskimage.cpp95 partition_id id = roster.RegisterFileDevice(fileName); local
96 if (id < 0) {
98 strerror(id));
99 return id;
105 if (roster.GetDeviceWithID(id, &device) == B_OK
108 path.Path(), id);
111 "but failed to get the device path.\n", id);
123 partition_id id = strtol(fileNameOrID, &numberEnd, 0); local
125 if (id >= 0 && numberEnd != fileNameOrID && *numberEnd == '\0') {
127 if (roster.GetDeviceWithID(id,
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/rtl8821a/
H A Dr21a_beacon.c63 r21a_beacon_init(struct rtwn_softc *sc, void *buf, int id) argument
67 r12a_beacon_init(sc, buf, id);
71 txd->txdw3 |= htole32(SM(R12A_TXDW3_SEQ_SEL, id * 2));
75 r21a_beacon_select(struct rtwn_softc *sc, int id) argument
77 switch (id) {
89 KASSERT(0, ("wrong port id %d\n", id));
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DDirectoryEntryTable.h18 ino_t id; member in struct:DirectoryEntryHash::Key
21 Key(ino_t i, const char* n) : id(i), name(n) {}
28 return node_child_hash(key.id, key.name);
38 return (value->GetParent()->GetID() == key.id
59 status_t RemoveEntry(ino_t id, Entry *child);
60 status_t RemoveEntry(ino_t id, const char *name);
61 Entry *GetEntry(ino_t id, const char *name);
104 DirectoryEntryTable::AddEntry(ino_t id, Entry *child) argument
108 RemoveEntry(id, child);
126 DirectoryEntryTable::RemoveEntry(ino_t id, Entr argument
136 RemoveEntry(ino_t id, const char *name) argument
146 GetEntry(ino_t id, const char *name) argument
[all...]
/haiku/src/apps/cortex/ParameterView/
H A DParameterWindowManager.cpp84 int32 id,
86 : id(id),
92 int32 id; member in struct:panel_map_entry
199 if (_findWindowFor(ref->id(), &window)) {
236 if (_findPanelFor(ref->id(), &messenger)) {
242 _removePanelFor(ref->id());
254 _addPanelFor(ref->id(), messenger);
329 int32 id,
336 if (entry->ref->id()
83 panel_map_entry( int32 id, const BMessenger &messenger) argument
328 _findWindowFor( int32 id, BWindow **outWindow) argument
345 _removeWindowFor( int32 id) argument
383 _addPanelFor( int32 id, const BMessenger &messenger) argument
397 _findPanelFor( int32 id, BMessenger *outMessenger) argument
414 _removePanelFor( int32 id) argument
[all...]

Completed in 304 milliseconds

1234567891011>>