Searched refs:fields (Results 1 - 25 of 36) sorted by path

12

/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex118 \item{All other fields must be set to 0.}
401 These fields contain the same kind of data. To understand what the value for a
405 fields are written that are not unused. Thus the original pattern can be seen
607 resulted from the attempt to assign all the fields a reasonable meaning, but
608 in fact not even the exact length and meaning of the fields of the resources
611 fields is base on educated guesses.}
/haiku/headers/os/locale/
H A DDateFormat.h69 status_t GetFields(BDateElement*& fields,
H A DTimeFormat.h41 status_t GetTimeFields(BDateElement*& fields,
/haiku/src/apps/cortex/Persistence/Wrappers/
H A DMessageIO.cpp148 // 2) export fields sorted first by index, then name
151 field_set fields; local
163 fields.push_back(name);
166 if(!fields.size())
178 fieldIndex < fields.size();
182 fields[fieldIndex].String(),
194 fields[fieldIndex].String(),
199 errText << "Couldn't export field '" << fields[fieldIndex] <<
/haiku/src/bin/rc/
H A Dcompile.h44 int32 count; // how many fields
45 field_t* fields; // field definitions member in struct:type_t
H A Dparser.y542 type.fields = NULL;
560 type.fields = (field_t*) list.items;
807 // For user-defined types, we copy the default values of the fields
814 size += type.fields[t].data.size;
821 data_t field_data = type.fields[t].data;
844 slots[k] = cast(type.fields[k].type, data);
851 abort_compile(RDEF_COMPILE_ERR, "too many fields");
856 if (strcmp(type.fields[k].name, data.name) == 0) {
860 slots[k] = cast(type.fields[k].type, data);
883 size += type.fields[
[all...]
/haiku/src/kits/network/libnetapi/
H A DNetworkSettings.cpp552 int32 fields; local
554 && message->FindInt32("fields", &fields) == B_OK
555 && (fields & (B_STAT_MODIFICATION_TIME | B_STAT_SIZE)) == 0) {
780 // TODO: the other fields aren't currently used, add them when they are
853 // TODO: add the other fields
/haiku/headers/private/netservices/
H A DHttpRequest.h49 void SetPostFields(const BHttpForm& fields);
52 void AdoptPostFields(BHttpForm* const fields);
/haiku/headers/private/netservices2/
H A DHttpFields.h39 BHttpFields(std::initializer_list<Field> fields);
55 void AddFields(std::initializer_list<Field> fields);
H A DHttpRequest.h112 void SetFields(const BHttpFields& fields);
/haiku/src/add-ons/kernel/drivers/network/ether/intel22x/dev/igc/
H A Dif_igc.c411 buf->eop != -1 ? txr->tx_base[buf->eop].upper.fields.status & IGC_TXD_STAT_DD : 0);
1743 * Configure the RSS fields to hash upon.
H A Digc_hw.h214 } fields; member in union:igc_tx_desc::__anon16
243 } fields; member in union:igc_context_desc::__anon22
264 } fields; member in union:igc_data_desc::__anon26
H A Digc_txrx.c102 status = txr->tx_base[cur].upper.fields.status;
112 if (txr->tx_base[i].upper.fields.status & IGC_TXD_STAT_DD)
/haiku/src/add-ons/kernel/drivers/network/ether/ipro1000/dev/e1000/
H A De1000_82575.h105 } fields; member in union:e1000_adv_context_desc::__anon5
119 } fields; member in union:e1000_adv_context_desc::__anon7
H A De1000_hw.h501 } fields; member in union:e1000_tx_desc::__anon35
530 } fields; member in union:e1000_context_desc::__anon41
551 } fields; member in union:e1000_data_desc::__anon45
H A Dem_txrx.c111 status = txr->tx_base[cur].upper.fields.status;
121 if (txr->tx_base[i].upper.fields.status & E1000_TXD_STAT_DD)
178 TXD->tcp_seg_setup.fields.mss = htole16(pi->ipi_tso_segsz);
179 TXD->tcp_seg_setup.fields.hdr_len = hdr_len;
445 status = txr->tx_base[cur].upper.fields.status;
475 status = txr->tx_base[cur].upper.fields.status;
H A Dif_em.c717 buf->eop != -1 ? txr->tx_base[buf->eop].upper.fields.status & E1000_TXD_STAT_DD : 0);
2855 * Configure the RSS fields to hash upon.
/haiku/src/apps/deskbar/
H A DTimeView.cpp410 int32 fields = B_DATE_ELEMENT_HOUR | B_DATE_ELEMENT_MINUTE; local
412 fields |= B_DATE_ELEMENT_SECOND;
414 fields |= B_DATE_ELEMENT_WEEKDAY;
416 fields |= B_DATE_ELEMENT_TIMEZONE;
421 fields);
/haiku/src/apps/people/
H A DPeopleApp.cpp159 // add default person fields to meta-mime type
160 BMessage fields; local
162 fields.AddString("attr:public_name", sDefaultAttributes[i].name);
163 fields.AddString("attr:name", sDefaultAttributes[i].attribute);
164 fields.AddInt32("attr:type", B_STRING_TYPE);
165 fields.AddBool("attr:viewable", true);
166 fields.AddBool("attr:editable", true);
167 fields.AddInt32("attr:width", sDefaultAttributes[i].width);
168 fields.AddInt32("attr:alignment", B_ALIGN_LEFT);
169 fields
[all...]
/haiku/src/apps/stylededit/
H A DStyledEditWindow.cpp2114 int32 fields = 0; local
2115 if (message->FindInt32("fields", &fields) == B_OK
2116 && (fields & (B_STAT_SIZE | B_STAT_MODIFICATION_TIME
/haiku/src/apps/text_search/
H A DGrepWindow.cpp909 int32 fields; local
910 message->FindInt32("fields", &fields);
912 TRACE_NM("B_STAT_CHANGED (fields = 0x%" B_PRIx32 ")\n", fields);
915 if (fields == B_STAT_CHANGE_TIME)
/haiku/src/kits/locale/
H A DDateFormat.cpp212 BDateFormat::GetFields(BDateElement*& fields, int& fieldCount, argument
219 fields = NULL;
238 fields = (BDateElement*) malloc(fieldCount * sizeof(BDateElement));
243 fields[i] = B_DATE_ELEMENT_YEAR;
246 fields[i] = B_DATE_ELEMENT_MONTH;
249 fields[i] = B_DATE_ELEMENT_DAY;
252 fields[i] = B_DATE_ELEMENT_WEEKDAY;
255 fields[i] = B_DATE_ELEMENT_INVALID;
H A DTimeFormat.cpp154 BTimeFormat::GetTimeFields(BDateElement*& fields, int& fieldCount, argument
161 fields = NULL;
180 fields = (BDateElement*) malloc(fieldCount * sizeof(BDateElement));
188 fields[i] = B_DATE_ELEMENT_HOUR;
191 fields[i] = B_DATE_ELEMENT_MINUTE;
194 fields[i] = B_DATE_ELEMENT_SECOND;
197 fields[i] = B_DATE_ELEMENT_AM_PM;
200 fields[i] = B_DATE_ELEMENT_INVALID;
/haiku/src/kits/network/libnetservices/
H A DGopherRequest.cpp94 /** Types of fields in a line */
443 BStringList fields; local
447 line.Split("\t", false, fields);
450 && fields.CountStrings() < FIELD_GPFLAG)
456 BString title = fields.StringAt(FIELD_NAME);
459 if (fields.CountStrings() > 3) {
460 link << fields.StringAt(FIELD_HOST);
461 if (fields.StringAt(FIELD_PORT).Length())
462 link << ":" << fields.StringAt(FIELD_PORT);
464 //if (fields
[all...]
H A DHttpRequest.cpp258 BHttpRequest::SetPostFields(const BHttpForm& fields) argument
260 AdoptPostFields(new(std::nothrow) BHttpForm(fields));
272 BHttpRequest::AdoptPostFields(BHttpForm* const fields) argument
275 fOptPostFields = fields;

Completed in 201 milliseconds

12