Changeset 5b0cf63 in mainline for uspace/srv
- Timestamp:
- 2018-01-25T13:42:08Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1ab3c4b
- Parents:
- c832ab15
- git-author:
- Jiri Svoboda <jiri@…> (2017-01-24 18:40:44)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-01-25 13:42:08)
- Location:
- uspace/srv
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/audio/hound/hound.h
rc832ab15 r5b0cf63 70 70 hound_ctx_t *hound_get_ctx_by_id(hound_t *hound, hound_context_id_t id); 71 71 72 errno_t hound_add_device(hound_t *hound, service_id_t id, const char *name);72 errno_t hound_add_device(hound_t *hound, service_id_t id, const char *name); 73 73 errno_t hound_add_source(hound_t *hound, audio_source_t *source); 74 74 errno_t hound_add_sink(hound_t *hound, audio_sink_t *sink); … … 79 79 errno_t hound_remove_source(hound_t *hound, audio_source_t *source); 80 80 errno_t hound_remove_sink(hound_t *hound, audio_sink_t *sink); 81 errno_t hound_connect(hound_t *hound, const char * source_name, const char*sink_name);82 errno_t hound_disconnect(hound_t *hound, const char * source_name, const char*sink_name);81 errno_t hound_connect(hound_t *hound, const char *source_name, const char *sink_name); 82 errno_t hound_disconnect(hound_t *hound, const char *source_name, const char *sink_name); 83 83 84 84 #endif -
uspace/srv/audio/hound/hound_ctx.h
rc832ab15 r5b0cf63 69 69 70 70 hound_ctx_stream_t *hound_ctx_create_stream(hound_ctx_t *ctx, int flags, 71 71 pcm_format_t format, size_t buffer_size); 72 72 void hound_ctx_destroy_stream(hound_ctx_stream_t *stream); 73 73 -
uspace/srv/bd/vbd/disk.h
rc832ab15 r5b0cf63 52 52 extern errno_t vbds_label_delete(service_id_t); 53 53 extern errno_t vbds_part_get_info(vbds_part_id_t, vbd_part_info_t *); 54 extern errno_t vbds_part_create(service_id_t, vbd_part_spec_t *, vbds_part_id_t *);54 extern errno_t vbds_part_create(service_id_t, vbd_part_spec_t *, vbds_part_id_t *); 55 55 extern errno_t vbds_part_delete(vbds_part_id_t); 56 56 extern errno_t vbds_suggest_ptype(service_id_t, label_pcnt_t, label_ptype_t *); -
uspace/srv/fs/exfat/exfat_bitmap.h
rc832ab15 r5b0cf63 42 42 struct exfat_bs; 43 43 44 extern errno_t exfat_bitmap_alloc_clusters(struct exfat_bs *, service_id_t, 44 extern errno_t exfat_bitmap_alloc_clusters(struct exfat_bs *, service_id_t, 45 45 exfat_cluster_t *, exfat_cluster_t); 46 extern errno_t exfat_bitmap_append_clusters(struct exfat_bs *, struct exfat_node *, 46 extern errno_t exfat_bitmap_append_clusters(struct exfat_bs *, struct exfat_node *, 47 47 exfat_cluster_t); 48 extern errno_t exfat_bitmap_free_clusters(struct exfat_bs *, struct exfat_node *, 48 extern errno_t exfat_bitmap_free_clusters(struct exfat_bs *, struct exfat_node *, 49 49 exfat_cluster_t); 50 extern errno_t exfat_bitmap_replicate_clusters(struct exfat_bs *, struct exfat_node *); 50 extern errno_t exfat_bitmap_replicate_clusters(struct exfat_bs *, struct exfat_node *); 51 51 52 52 extern errno_t exfat_bitmap_is_free(struct exfat_bs *, service_id_t, exfat_cluster_t); 53 53 extern errno_t exfat_bitmap_set_cluster(struct exfat_bs *, service_id_t, exfat_cluster_t); 54 extern errno_t exfat_bitmap_clear_cluster(struct exfat_bs *, service_id_t, 54 extern errno_t exfat_bitmap_clear_cluster(struct exfat_bs *, service_id_t, 55 55 exfat_cluster_t); 56 56 57 extern errno_t exfat_bitmap_set_clusters(struct exfat_bs *, service_id_t, 57 extern errno_t exfat_bitmap_set_clusters(struct exfat_bs *, service_id_t, 58 58 exfat_cluster_t, exfat_cluster_t); 59 extern errno_t exfat_bitmap_clear_clusters(struct exfat_bs *, service_id_t, 59 extern errno_t exfat_bitmap_clear_clusters(struct exfat_bs *, service_id_t, 60 60 exfat_cluster_t, exfat_cluster_t); 61 61 -
uspace/srv/fs/exfat/exfat_directory.h
rc832ab15 r5b0cf63 29 29 /** @addtogroup fs 30 30 * @{ 31 */ 31 */ 32 32 33 33 #ifndef EXFAT_EXFAT_DIRECTORY_H_ … … 66 66 extern errno_t exfat_directory_find(exfat_directory_t *, exfat_dentry_clsf_t, 67 67 exfat_dentry_t **); 68 extern errno_t exfat_directory_find_continue(exfat_directory_t *, 68 extern errno_t exfat_directory_find_continue(exfat_directory_t *, 69 69 exfat_dentry_clsf_t, exfat_dentry_t **); 70 70 -
uspace/srv/fs/exfat/exfat_fat.h
rc832ab15 r5b0cf63 61 61 exfat_cluster_walk((bs), (sid), (fc), NULL, (numc), (uint32_t) -1) 62 62 63 extern errno_t exfat_cluster_walk(struct exfat_bs *, service_id_t, 63 extern errno_t exfat_cluster_walk(struct exfat_bs *, service_id_t, 64 64 exfat_cluster_t, exfat_cluster_t *, uint32_t *, uint32_t); 65 65 extern errno_t exfat_block_get(block_t **, struct exfat_bs *, struct exfat_node *, -
uspace/srv/fs/fat/fat_directory.h
rc832ab15 r5b0cf63 29 29 /** @addtogroup fs 30 30 * @{ 31 */ 31 */ 32 32 33 33 #ifndef FAT_FAT_DIRECTORY_H_ -
uspace/srv/fs/locfs/locfs.h
rc832ab15 r5b0cf63 29 29 /** @addtogroup fs 30 30 * @{ 31 */ 31 */ 32 32 33 33 #ifndef LOCFS_LOCFS_H_ -
uspace/srv/hid/isdv4_tablet/isdv4.h
rc832ab15 r5b0cf63 74 74 75 75 typedef enum { 76 UNKNOWN, PRESS, RELEASE, PROXIMITY_IN, PROXIMITY_OUT, MOVE 76 UNKNOWN, 77 PRESS, 78 RELEASE, 79 PROXIMITY_IN, 80 PROXIMITY_OUT, 81 MOVE 77 82 } isdv4_event_type_t; 78 83 79 84 typedef enum { 80 STYLUS_TIP, STYLUS_ERASER, TOUCH 85 STYLUS_TIP, 86 STYLUS_ERASER, 87 TOUCH 81 88 } isdv4_source_type_t; 82 89 -
uspace/srv/hid/output/output.h
rc832ab15 r5b0cf63 42 42 43 43 typedef struct { 44 errno_t (* 45 errno_t (* 44 errno_t (*yield)(struct outdev *dev); 45 errno_t (*claim)(struct outdev *dev); 46 46 47 void (* 47 void (*get_dimensions)(struct outdev *dev, sysarg_t *cols, 48 48 sysarg_t *rows); 49 console_caps_t (* 49 console_caps_t (*get_caps)(struct outdev *dev); 50 50 51 void (* 51 void (*cursor_update)(struct outdev *dev, sysarg_t prev_col, 52 52 sysarg_t prev_row, sysarg_t col, sysarg_t row, bool visible); 53 void (* 54 void (* 53 void (*char_update)(struct outdev *dev, sysarg_t col, sysarg_t row); 54 void (*flush)(struct outdev *dev); 55 55 } outdev_ops_t; 56 56 -
uspace/srv/hid/output/proto/vt100.h
rc832ab15 r5b0cf63 35 35 #include <io/charfield.h> 36 36 37 typedef void (* 38 typedef void (* 39 typedef void (* 37 typedef void (*vt100_putchar_t)(wchar_t ch); 38 typedef void (*vt100_control_puts_t)(const char *str); 39 typedef void (*vt100_flush_t)(void); 40 40 41 41 typedef struct {
Note:
See TracChangeset
for help on using the changeset viewer.