Searched refs:type (Results 126 - 150 of 2863) sorted by relevance

1234567891011>>

/haiku-fatelf/src/add-ons/kernel/drivers/audio/emuxki/
H A Dmulti.h36 void (*get) (void *card, const void *cookie, int32 type, float *values);
37 void (*set) (void *card, const void *cookie, int32 type, float *values);
39 int32 type; member in struct:_multi_mixer_control
/haiku-fatelf/src/apps/cortex/support/
H A DSimpleLockable.h59 lock_t type=WRITE,
66 lock_t type=WRITE) {
72 lock_t type=WRITE) const {
58 lock( lock_t type=WRITE, bigtime_t timeout=B_INFINITE_TIMEOUT) argument
65 unlock( lock_t type=WRITE) argument
/haiku-fatelf/src/apps/debugger/settings/
H A DTeamUiSettingsFactory.cpp28 int32 type; local
29 status_t error = archive.FindInt32("type", &type);
33 switch (type) {
/haiku-fatelf/src/bin/gdb/gdb/config/s390/
H A Dnm-linux.h48 #define TARGET_CAN_USE_HARDWARE_WATCHPOINT(type, cnt, ot) 1
55 #define target_insert_watchpoint(addr, len, type) \
58 #define target_remove_watchpoint(addr, len, type) \
/haiku-fatelf/src/kits/app/
H A DTokenSpace.cpp37 BTokenSpace::NewToken(int16 type, void* object) argument
41 token_info tokenInfo = { type, object, NULL };
63 BTokenSpace::SetToken(int32 token, int16 type, void* object) argument
67 token_info tokenInfo = { type, object, NULL };
98 \a type in the token space or not.
101 BTokenSpace::CheckToken(int32 token, int16 type) const
106 if (iterator != fTokenMap.end() && iterator->second.type == type)
114 BTokenSpace::GetToken(int32 token, int16 type, void** _object) const argument
122 if (iterator == fTokenMap.end() || iterator->second.type !
[all...]
/haiku-fatelf/src/libs/ncurses/ncurses/trace/
H A Dvarargs.c47 #define VA_INT(type) ival = va_arg(ap, type)
48 #define VA_FLT(type) fval = va_arg(ap, type)
49 #define VA_PTR(type) pval = (char *)va_arg(ap, type)
50 #define VA_STR(type) sval = va_arg(ap, type)
81 int type = 0; local
99 type
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/debugger/
H A Dgcc2_demangle_test.cpp28 int32 type; local
31 &type, &length) == B_OK) {
32 printf("name \"%s\", type %.4s, length %lu\n", name, (char*)&type,
/haiku-fatelf/src/tests/kits/storage/testapps/
H A Ddump_mime_types.cpp29 const char *type; local
30 for (int i = 0; installedTypes.FindString("types", i, &type) == B_OK; i++) {
31 printf("%s:\n", type);
33 // get mime type
35 error = mimeType.SetTo(type);
37 printf(" failed to init type: %s\n", strerror(error));
92 type_code type; local
100 && (attrInfo.FindInt32("attr:type", k, (int32*)&type) == B_OK
101 || (type
[all...]
/haiku-fatelf/src/tests/system/kernel/
H A Dadvisory_locking_test.cpp21 type_name(int type) argument
23 return type == F_RDLCK ? "shared" : type == F_WRLCK
29 do_lock(int fd, int type, off_t start, off_t length) argument
31 printf("%s lock %Ld:%Ld\n", type_name(type), start, length);
34 flock.l_type = type;
39 fprintf(stderr, "ERROR: %s lock %Ld:%Ld failed: %s\n", type_name(type),
121 int type = 0; local
123 type = F_RDLCK;
125 type
[all...]
/haiku-fatelf/src/bin/gdb/gdb/
H A Dada-exp.y112 static struct type *type_qualifier;
122 static void write_int (LONGEST, struct type *);
128 static LONGEST convert_char_literal (struct type *, LONGEST);
130 static struct type *type_int (void);
132 static struct type *type_long (void);
134 static struct type *type_long_long (void);
136 static struct type *type_float (void);
138 static struct type *type_double (void);
140 static struct type *type_long_double (void);
142 static struct type *type_cha
562 type : TYPENAME { $$ = $1; } label
[all...]
H A Dlanguage.h128 actually defines such a type. */
129 struct type **primitive_type_vector;
131 struct type *string_char_type;
134 struct type *language_string_char_type (const struct language_defn *l,
137 struct type *language_lookup_primitive_type_by_name (const struct language_defn *l,
156 such a type. */
158 struct type **const *la_builtin_type_vector;
164 /* Default type checking */
203 struct type *(*la_fund_type) (struct objfile *, int);
205 /* Print a type usin
[all...]
H A Dfindvar.c164 /* Treat the bytes at BUF as a pointer of type TYPE, and return the
167 extract_typed_address (const void *buf, struct type *type) argument
169 if (TYPE_CODE (type) != TYPE_CODE_PTR
170 && TYPE_CODE (type) != TYPE_CODE_REF)
173 "type is not a pointer or reference");
175 return POINTER_TO_ADDRESS (type, buf);
233 /* Store the address ADDR as a pointer of type TYPE at BUF, in target
236 store_typed_address (void *buf, struct type *type, CORE_ADD argument
297 unsigned_pointer_to_address(struct type *type, const void *buf) argument
303 signed_pointer_to_address(struct type *type, const void *buf) argument
311 unsigned_address_to_pointer(struct type *type, void *buf, CORE_ADDR addr) argument
317 address_to_signed_pointer(struct type *type, void *buf, CORE_ADDR addr) argument
383 struct type *type = SYMBOL_TYPE (var); local
415 store_typed_address (VALUE_CONTENTS_RAW (v), type, addr); local
418 store_typed_address (VALUE_CONTENTS_RAW (v), type, local
599 value_from_register(struct type *type, int regnum, struct frame_info *frame) argument
744 struct type *type = SYMBOL_TYPE (var); local
[all...]
H A Dlanguage.c93 static struct type *unk_lang_create_fundamental_type (struct objfile *, int);
95 static void unk_lang_print_type (struct type *, char *, struct ui_file *,
98 static int unk_lang_val_print (struct type *, char *, int, CORE_ADDR,
109 /* The current (default at startup) state of type and range checking.
138 /* The "set language/type/range" commands all put stuff in these
145 static char *type; variable
243 /* Show command. Display a warning if the type setting does
250 "Warning: the current type check setting does not match the language.\n");
253 /* Set command. Change the setting for type checking. */
257 if (strcmp (type, "o
808 struct type *type; local
1114 unk_lang_print_type(struct type *type, char *varstring, struct ui_file *stream, int show, int level) argument
1121 unk_lang_val_print(struct type *type, char *valaddr, int embedded_offset, CORE_ADDR address, struct ui_file *stream, int format, int deref_ref, int recurse, enum val_prettyprint pretty) argument
[all...]
H A Dgnu-v3-abi.c47 GDB type object representing the vtable structure. Following the
64 type_info object itself, so we don't bother to get the type
78 the GDB type object is actually a per-architecture kind of thing.
81 which refers to the struct type * for this structure, laid out
95 /* Return a GDB type representing `struct gdb_gnu_v3_abi_vtable',
105 struct type *t;
109 struct type *void_ptr_type
111 struct type *ptr_to_void_fn_type
114 /* ARCH can't give us the true ptrdiff_t type, so we guess. */
115 struct type *ptrdiff_typ
280 gnuv3_virtual_fn_field(struct value **value_p, struct fn_field *f, int j, struct type *type, int offset) argument
360 gnuv3_baseclass_offset(struct type *type, int index, char *valaddr, CORE_ADDR address) argument
[all...]
/haiku-fatelf/src/preferences/filetypes/
H A DMimeTypeListView.cpp14 // TODO: lazy type collecting (super types only at startup)
21 mimetype_is_application_signature(BMimeType& type) argument
28 return type.GetPreferredApp(preferredApp) == B_OK
29 && !strcasecmp(type.Type(), preferredApp);
36 MimeTypeItem::MimeTypeItem(BMimeType& type, bool showIcon, bool flat) argument
37 : BStringItem(type.Type(), !flat && !type.IsSupertypeOnly() ? 1 : 0, false),
38 fType(type.Type()),
42 _SetTo(type);
46 MimeTypeItem::MimeTypeItem(const char* type, boo argument
147 _SetTo(BMimeType& type) argument
289 const char* type; local
391 _AddNewType(const char* type) argument
468 const char* type; local
534 const char* type; local
553 SelectNewType(const char* type) argument
563 SelectType(const char* type) argument
598 FindItem(const char* type) argument
[all...]
/haiku-fatelf/src/libs/libtelnet/
H A Dauth.c110 int auth_onoff(char *type, int on);
191 findauthenticator(int type, int way) argument
195 while (ap->type && (ap->type != type || ap->way != way))
197 return(ap->type ? ap : 0);
211 while (ap->type) {
213 i_support |= typemask(ap->type);
215 printf(">>>%s: I support auth type %d %d\r\n",
217 ap->type, a
239 getauthmask(char *type, int *maskp) argument
258 auth_enable(char *type) argument
264 auth_disable(char *type) argument
270 auth_onoff(char *type, int on) argument
[all...]
/haiku-fatelf/src/kits/media/
H A DMediaFiles.cpp85 BMediaFiles::RewindRefs(const char* type) argument
92 "type %s\n", type);
96 strlcpy(request.type, type, B_MEDIA_NAME_LENGTH);
115 fCurrentType = type;
140 BMediaFiles::GetRefFor(const char* type, const char* item, entry_ref* _ref) argument
144 if (type == NULL || item == NULL || _ref == NULL)
148 strlcpy(request.type, type, B_MEDIA_NAME_LENGT
165 GetAudioGainFor(const char* type, const char* item, float* _gain) argument
190 SetRefFor(const char* type, const char* item, const entry_ref& ref) argument
213 SetAudioGainFor(const char* type, const char* item, float gain) argument
235 RemoveRefFor(const char* type, const char* item, const entry_ref &ref) argument
257 RemoveItem(const char* type, const char* item) argument
[all...]
/haiku-fatelf/headers/posix/
H A Dstdio_ext.h30 extern int __fsetlocking(FILE* stream, int type);
/haiku-fatelf/headers/private/fs_shell/
H A Dfssh_defs.h47 #define fssh_offsetof(type,member) __builtin_offsetof(type, member)
49 #define fssh_offsetof(type,member) ((size_t)&((type*)0)->member)
H A Dfssh_fs_attr.h14 uint32_t type; member in struct:fssh_attr_info
24 uint32_t type, fssh_off_t pos, void *buffer,
27 uint32_t type, fssh_off_t pos, const void *buffer,
35 //extern int fssh_fs_open_attr(const char *path, const char *attribute, uint32_t type, int openMode);
37 uint32_t type, int openMode);
/haiku-fatelf/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dio.c44 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
45 if (config->type & TYPE_ICH4)
55 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
56 if (config->type & TYPE_ICH4)
66 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
67 if (config->type & TYPE_ICH4)
77 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
78 if (config->type & TYPE_ICH4)
88 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
89 if (config->type
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/audio/ac97/ich/
H A Dconfig.h39 uint32 type; member in struct:__anon1485
62 #define GET_REG_X_PICB(cfg) (((cfg)->type == TYPE_SIS7012) ? _ICH_REG_X_SR : _ICH_REG_X_PICB)
63 #define GET_REG_X_SR(cfg) (((cfg)->type == TYPE_SIS7012) ? _ICH_REG_X_PICB : _ICH_REG_X_SR)
65 #define GET_HW_SAMPLE_SIZE(cfg) (((cfg)->type == TYPE_SIS7012) ? 1 : 2)
H A Dio.c44 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
45 if (config->type & TYPE_ICH4)
55 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
56 if (config->type & TYPE_ICH4)
66 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
67 if (config->type & TYPE_ICH4)
77 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
78 if (config->type & TYPE_ICH4)
88 ASSERT(((config->type & TYPE_ICH4) != 0 && regno <= 255) || regno <= 63);
89 if (config->type
[all...]
/haiku-fatelf/src/add-ons/kernel/drivers/input/usb_hid/
H A DHIDParser.h27 HIDReport * FindReport(uint8 type, uint8 id);
28 uint8 CountReports(uint8 type);
29 HIDReport * ReportAt(uint8 type, uint8 index);
40 HIDReport * _FindOrCreateReport(uint8 type, uint8 id);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DConnectionFactory.h16 status_t CreateConnection(const char* type,

Completed in 312 milliseconds

1234567891011>>