| /OK3568_Linux_fs/kernel/drivers/misc/ |
| H A D | tifm_7xx1.c | 21 static void tifm_7xx1_dummy_eject(struct tifm_adapter *fm, in tifm_7xx1_dummy_eject() argument 26 static void tifm_7xx1_eject(struct tifm_adapter *fm, struct tifm_dev *sock) in tifm_7xx1_eject() argument 30 spin_lock_irqsave(&fm->lock, flags); in tifm_7xx1_eject() 31 fm->socket_change_set |= 1 << sock->socket_id; in tifm_7xx1_eject() 32 tifm_queue_work(&fm->media_switcher); in tifm_7xx1_eject() 33 spin_unlock_irqrestore(&fm->lock, flags); in tifm_7xx1_eject() 38 struct tifm_adapter *fm = dev_id; in tifm_7xx1_isr() local 42 spin_lock(&fm->lock); in tifm_7xx1_isr() 43 irq_status = readl(fm->addr + FM_INTERRUPT_STATUS); in tifm_7xx1_isr() 45 spin_unlock(&fm->lock); in tifm_7xx1_isr() [all …]
|
| H A D | tifm_core.c | 165 struct tifm_adapter *fm = container_of(dev, struct tifm_adapter, dev); in tifm_free() local 167 kfree(fm); in tifm_free() 178 struct tifm_adapter *fm; in tifm_alloc_adapter() local 180 fm = kzalloc(sizeof(struct tifm_adapter) in tifm_alloc_adapter() 182 if (fm) { in tifm_alloc_adapter() 183 fm->dev.class = &tifm_adapter_class; in tifm_alloc_adapter() 184 fm->dev.parent = dev; in tifm_alloc_adapter() 185 device_initialize(&fm->dev); in tifm_alloc_adapter() 186 spin_lock_init(&fm->lock); in tifm_alloc_adapter() 187 fm->num_sockets = num_sockets; in tifm_alloc_adapter() [all …]
|
| /OK3568_Linux_fs/kernel/fs/fuse/ |
| H A D | xattr.c | 17 struct fuse_mount *fm = get_fuse_mount(inode); in fuse_setxattr() local 22 if (fm->fc->no_setxattr) in fuse_setxattr() 37 err = fuse_simple_request(fm, &args); in fuse_setxattr() 39 fm->fc->no_setxattr = 1; in fuse_setxattr() 52 struct fuse_mount *fm = get_fuse_mount(inode); in fuse_getxattr() local 58 if (fm->fc->no_getxattr) in fuse_getxattr() 80 ret = fuse_simple_request(fm, &args); in fuse_getxattr() 84 fm->fc->no_getxattr = 1; in fuse_getxattr() 110 struct fuse_mount *fm = get_fuse_mount(inode); in fuse_listxattr() local 119 if (!fuse_allow_current_process(fm->fc)) in fuse_listxattr() [all …]
|
| H A D | inode.c | 370 struct fuse_mount **fm) in fuse_ilookup() argument 382 if (fm) in fuse_ilookup() 383 *fm = fm_iter; in fuse_ilookup() 449 static void fuse_send_destroy(struct fuse_mount *fm) in fuse_send_destroy() argument 451 if (fm->fc->conn_init) { in fuse_send_destroy() 457 fuse_simple_request(fm, &args); in fuse_send_destroy() 463 struct fuse_mount *fm = get_fuse_mount_super(sb); in fuse_put_super() local 465 fuse_mount_put(fm); in fuse_put_super() 485 struct fuse_mount *fm = get_fuse_mount_super(sb); in fuse_statfs() local 490 if (!fuse_allow_current_process(fm->fc)) { in fuse_statfs() [all …]
|
| H A D | file.c | 35 static int fuse_send_open(struct fuse_mount *fm, u64 nodeid, struct file *file, in fuse_send_open() argument 43 if (!fm->fc->atomic_o_trunc) in fuse_send_open() 54 return fuse_simple_request(fm, &args); in fuse_send_open() 63 struct fuse_file *fuse_file_alloc(struct fuse_mount *fm) in fuse_file_alloc() argument 71 ff->fm = fm; in fuse_file_alloc() 85 ff->kh = atomic64_inc_return(&fm->fc->khctr); in fuse_file_alloc() 103 static void fuse_release_end(struct fuse_mount *fm, struct fuse_args *args, in fuse_release_end() argument 117 if (isdir ? ff->fm->fc->no_opendir : ff->fm->fc->no_open) { in fuse_file_put() 119 fuse_release_end(ff->fm, args, 0); in fuse_file_put() 121 fuse_simple_request(ff->fm, args); in fuse_file_put() [all …]
|
| H A D | dir.c | 200 struct fuse_mount *fm; in fuse_dentry_revalidate() local 222 fm = get_fuse_mount(inode); in fuse_dentry_revalidate() 229 attr_version = fuse_get_attr_version(fm->fc); in fuse_dentry_revalidate() 232 fuse_lookup_init(fm->fc, &args, get_node_id(d_inode(parent)), in fuse_dentry_revalidate() 234 ret = fuse_simple_request(fm, &args); in fuse_dentry_revalidate() 243 fuse_queue_forget(fm->fc, forget, in fuse_dentry_revalidate() 314 struct fuse_mount *fm; in fuse_dentry_automount() local 327 fm = kzalloc(sizeof(struct fuse_mount), GFP_KERNEL); in fuse_dentry_automount() 328 if (!fm) in fuse_dentry_automount() 331 refcount_set(&fm->count, 1); in fuse_dentry_automount() [all …]
|
| H A D | fuse_i.h | 197 struct fuse_mount *fm; member 287 void (*end)(struct fuse_mount *fm, struct fuse_args *args, int error); 398 struct fuse_mount *fm; member 851 struct fuse_mount *fm = get_fuse_mount_super(sb); in get_fuse_conn_super() local 853 return fm ? fm->fc : NULL; in get_fuse_conn_super() 863 struct fuse_mount *fm = get_fuse_mount(inode); in get_fuse_conn() local 865 return fm ? fm->fc : NULL; in get_fuse_conn() 963 struct fuse_file *fuse_file_alloc(struct fuse_mount *fm); 1031 ssize_t fuse_simple_request(struct fuse_mount *fm, struct fuse_args *args); 1032 int fuse_simple_background(struct fuse_mount *fm, struct fuse_args *args, [all …]
|
| H A D | cuse.c | 60 struct fuse_mount fm; /* Dummy mount referencing fc */ member 138 rc = fuse_do_open(&cc->fm, 0, file, 0); in cuse_open() 147 struct fuse_mount *fm = ff->fm; in cuse_release() local 150 fuse_conn_put(fm->fc); in cuse_release() 159 struct cuse_conn *cc = fc_to_cc(ff->fm->fc); in cuse_file_ioctl() 172 struct cuse_conn *cc = fc_to_cc(ff->fm->fc); in cuse_file_compat_ioctl() 317 static void cuse_process_init_reply(struct fuse_mount *fm, in cuse_process_init_reply() argument 320 struct fuse_conn *fc = fm->fc; in cuse_process_init_reply() 429 struct fuse_mount *fm = &cc->fm; in cuse_send_init() local 465 rc = fuse_simple_background(fm, &ap->args, GFP_KERNEL); in cuse_send_init() [all …]
|
| H A D | dev.c | 44 static void fuse_request_init(struct fuse_mount *fm, struct fuse_req *req) in fuse_request_init() argument 51 req->fm = fm; in fuse_request_init() 54 static struct fuse_req *fuse_request_alloc(struct fuse_mount *fm, gfp_t flags) in fuse_request_alloc() argument 58 fuse_request_init(fm, req); in fuse_request_alloc() 107 static struct fuse_req *fuse_get_req(struct fuse_mount *fm, bool for_background) in fuse_get_req() argument 109 struct fuse_conn *fc = fm->fc; in fuse_get_req() 131 req = fuse_request_alloc(fm, GFP_KERNEL); in fuse_get_req() 161 struct fuse_conn *fc = req->fm->fc; in fuse_put_request() 286 struct fuse_mount *fm = req->fm; in fuse_request_end() local 287 struct fuse_conn *fc = fm->fc; in fuse_request_end() [all …]
|
| H A D | control.c | 167 struct fuse_mount *fm; in fuse_conn_congestion_threshold_write() local 188 fm = list_first_entry(&fc->mounts, struct fuse_mount, fc_entry); in fuse_conn_congestion_threshold_write() 190 clear_bdi_congested(fm->sb->s_bdi, BLK_RW_SYNC); in fuse_conn_congestion_threshold_write() 191 clear_bdi_congested(fm->sb->s_bdi, BLK_RW_ASYNC); in fuse_conn_congestion_threshold_write() 193 set_bdi_congested(fm->sb->s_bdi, BLK_RW_SYNC); in fuse_conn_congestion_threshold_write() 194 set_bdi_congested(fm->sb->s_bdi, BLK_RW_ASYNC); in fuse_conn_congestion_threshold_write()
|
| H A D | virtio_fs.c | 1298 struct fuse_mount *fm = get_fuse_mount_super(sb); in virtio_fs_fill_super() local 1299 struct fuse_conn *fc = fm->fc; in virtio_fs_fill_super() 1351 fuse_send_init(fm); in virtio_fs_fill_super() 1362 static void virtio_fs_conn_destroy(struct fuse_mount *fm) in virtio_fs_conn_destroy() argument 1364 struct fuse_conn *fc = fm->fc; in virtio_fs_conn_destroy() 1380 fuse_conn_destroy(fm); in virtio_fs_conn_destroy() 1394 struct fuse_mount *fm = get_fuse_mount_super(sb); in virtio_kill_sb() local 1398 if (fm) { in virtio_kill_sb() 1399 last = fuse_mount_remove(fm); in virtio_kill_sb() 1401 virtio_fs_conn_destroy(fm); in virtio_kill_sb() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/stream/detail/ |
| H A D | match_manip.hpp | 154 match_manip<Expr, CopyExpr, CopyAttr> const& fm) in operator >>() argument 160 if (!qi::parse(f, l, fm.expr)) in operator >>() 173 match_manip<Expr, CopyExpr, CopyAttr, unused_type, Attribute> const& fm) in operator >>() argument 179 if (!qi::parse(f, l, fm.expr, fm.attr)) in operator >>() 192 match_manip<Expr, CopyExpr, CopyAttr, Skipper> const& fm) in operator >>() argument 199 f, l, fm.expr, fm.skipper, fm.post_skip)) in operator >>() 214 match_manip<Expr, CopyExpr, CopyAttr, Attribute, Skipper> const& fm) in operator >>() argument 221 f, l, fm.expr, fm.skipper, fm.post_skip, fm.attr)) in operator >>()
|
| /OK3568_Linux_fs/u-boot/drivers/mtd/ubi/ |
| H A D | fastmap.c | 607 struct ubi_fastmap_layout *fm) in ubi_attach_fastmap() argument 666 fm->max_pool_size = be16_to_cpu(fmpl->max_size); in ubi_attach_fastmap() 667 fm->max_wl_pool_size = be16_to_cpu(fmpl_wl->max_size); in ubi_attach_fastmap() 680 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE || in ubi_attach_fastmap() 681 fm->max_pool_size < 0) { in ubi_attach_fastmap() 682 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size); in ubi_attach_fastmap() 686 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE || in ubi_attach_fastmap() 687 fm->max_wl_pool_size < 0) { in ubi_attach_fastmap() 689 fm->max_wl_pool_size); in ubi_attach_fastmap() 841 ai->bad_peb_count - fm->used_blocks)) in ubi_attach_fastmap() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mtd/ubi/ |
| H A D | fastmap.c | 550 struct ubi_fastmap_layout *fm) in ubi_attach_fastmap() argument 609 fm->max_pool_size = be16_to_cpu(fmpl->max_size); in ubi_attach_fastmap() 610 fm->max_wl_pool_size = be16_to_cpu(fmpl_wl->max_size); in ubi_attach_fastmap() 623 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE || in ubi_attach_fastmap() 624 fm->max_pool_size < 0) { in ubi_attach_fastmap() 625 ubi_err(ubi, "bad maximal pool size: %i", fm->max_pool_size); in ubi_attach_fastmap() 629 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE || in ubi_attach_fastmap() 630 fm->max_wl_pool_size < 0) { in ubi_attach_fastmap() 632 fm->max_wl_pool_size); in ubi_attach_fastmap() 791 ai->bad_peb_count - fm->used_blocks)) in ubi_attach_fastmap() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/mtd/ubispl/ |
| H A D | ubispl.c | 284 struct ubi_fastmap_layout *fm) in ubi_attach_fastmap() argument 334 fm->max_pool_size = be16_to_cpu(fmpl1->max_size); in ubi_attach_fastmap() 335 fm->max_wl_pool_size = be16_to_cpu(fmpl2->max_size); in ubi_attach_fastmap() 347 if (fm->max_pool_size > UBI_FM_MAX_POOL_SIZE || in ubi_attach_fastmap() 348 fm->max_pool_size < 0) { in ubi_attach_fastmap() 349 ubi_err("bad maximal pool size: %i", fm->max_pool_size); in ubi_attach_fastmap() 353 if (fm->max_wl_pool_size > UBI_FM_MAX_POOL_SIZE || in ubi_attach_fastmap() 354 fm->max_wl_pool_size < 0) { in ubi_attach_fastmap() 355 ubi_err("bad maximal WL pool size: %i", fm->max_wl_pool_size); in ubi_attach_fastmap() 480 ai->bad_peb_count - fm->used_blocks)) in ubi_attach_fastmap() [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/browser/ |
| H A D | cookiejar.cpp | 380 QFontMetrics fm(font); in headerData() local 381 int height = fm.height() + fm.height()/3; in headerData() 382 int width = fm.width(headerData(section, orientation, Qt::DisplayRole).toString()); in headerData() 498 QFontMetrics fm(f); in CookiesDialog() local 499 int height = fm.height() + fm.height()/3; in CookiesDialog() 506 header = fm.width(QLatin1String("averagehost.domain.com")); in CookiesDialog() 509 header = fm.width(QLatin1String("_session_id")); in CookiesDialog() 512 header = fm.width(QDateTime::currentDateTime().toString(Qt::LocalDate)); in CookiesDialog() 515 int buffer = fm.width(QLatin1String("xx")); in CookiesDialog() 538 QFontMetrics fm(font); in headerData() local [all …]
|
| H A D | squeezelabel.cpp | 42 QFontMetrics fm = fontMetrics(); in paintEvent() local 43 if (fm.width(text()) > contentsRect().width()) { in paintEvent() 44 QString elided = fm.elidedText(text(), Qt::ElideMiddle, width()); in paintEvent()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | tifm.h | 122 void (*eject)(struct tifm_adapter *fm, 124 int (*has_ms_pif)(struct tifm_adapter *fm, 132 int tifm_add_adapter(struct tifm_adapter *fm); 133 void tifm_remove_adapter(struct tifm_adapter *fm); 134 void tifm_free_adapter(struct tifm_adapter *fm); 137 struct tifm_dev *tifm_alloc_device(struct tifm_adapter *fm, unsigned int id,
|
| /OK3568_Linux_fs/kernel/sound/drivers/opl3/ |
| H A D | opl3_midi.c | 301 struct fm_instrument *fm; in snd_opl3_note_on() local 347 fm = &patch->inst; in snd_opl3_note_on() 435 vol_op[i] = fm->op[i].ksl_level; in snd_opl3_note_on() 437 connection = fm->feedback_connection[0] & 0x01; in snd_opl3_note_on() 440 connection |= fm->feedback_connection[1] & 0x01; in snd_opl3_note_on() 467 reg_val = fm->op[i].am_vib; in snd_opl3_note_on() 477 reg_val = fm->op[i].attack_decay; in snd_opl3_note_on() 482 reg_val = fm->op[i].sustain_release; in snd_opl3_note_on() 487 reg_val = fm->op[i].wave_select; in snd_opl3_note_on() 493 reg_val = fm->feedback_connection[0]; in snd_opl3_note_on() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/libfm/ |
| H A D | libfm_1.3.2.bb | 8 file://src/fm.h;beginline=8;endline=21;md5=ef1f84da64b3c01cca447212f7ef6007 \ 9 … file://src/base/fm-config.h;beginline=10;endline=23;md5=ef1f84da64b3c01cca447212f7ef6007 \ 10 file://src/fm-gtk.h;beginline=6;endline=19;md5=646baa4955c04fe768f2ca27b92ac8dd" 47 rm -f ${D}${includedir}/libfm-1.0/fm-xml-file.h 48 rm -f ${D}${includedir}/libfm-1.0/fm-version.h 49 rm -f ${D}${includedir}/libfm-1.0/fm-extra.h
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/ |
| H A D | myspeed.cpp | 62 QFontMetricsF fm(this->font()); in drawScaleNum() local 74 w = fm.size(Qt::TextSingleLine,str).width(); in drawScaleNum() 75 h = fm.size(Qt::TextSingleLine,str).height(); in drawScaleNum() 117 QFontMetricsF fm(this->font()); in drawTitle() local 118 double w = fm.size(Qt::TextSingleLine,str).width(); in drawTitle() 125 QFontMetricsF fm(font()); in drawNumericValue() local 126 double w = fm.size(Qt::TextSingleLine,str).width(); in drawNumericValue()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-shells/zsh/zsh/ |
| H A D | CVE-2021-45444_1.patch | 36 bv->fm += 2; /* skip over F{ */ 37 if ((ep = strchr(bv->fm, '}'))) { 51 bv->fm = ep; 57 arg = match_colour((const char **)&bv->fm, is_fg, 0); 58 if (*bv->fm != '}')
|
| /OK3568_Linux_fs/kernel/sound/soc/codecs/ |
| H A D | cs42xx8.c | 269 u32 fm[2]; in cs42xx8_hw_params() local 285 fm[i] = CS42XX8_FM_AUTO; in cs42xx8_hw_params() 288 fm[i] = CS42XX8_FM_SINGLE; in cs42xx8_hw_params() 290 fm[i] = CS42XX8_FM_DOUBLE; in cs42xx8_hw_params() 292 fm[i] = CS42XX8_FM_QUAD; in cs42xx8_hw_params() 303 condition1 = ((fm[tx] == CS42XX8_FM_AUTO) ? in cs42xx8_hw_params() 307 (cs42xx8_ratios[i].ratio[fm[tx]] == ratio[tx])) && in cs42xx8_hw_params() 315 condition2 = ((fm[!tx] == CS42XX8_FM_AUTO) ? in cs42xx8_hw_params() 319 (cs42xx8_ratios[i].ratio[fm[!tx]] == ratio[!tx])); in cs42xx8_hw_params() 344 CS42XX8_FUNCMOD_xC_FM(tx, fm[tx]) | val); in cs42xx8_hw_params()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/ |
| H A D | dpu_formats.c | 34 bp, flg, fm, np) \ argument 46 .fetch_mode = fm, \ 53 alpha, bp, flg, fm, np, th) \ argument 65 .fetch_mode = fm, \ 73 alpha, chroma, count, bp, flg, fm, np) \ argument 85 .fetch_mode = fm, \ 91 #define PSEUDO_YUV_FMT(fmt, a, r, g, b, e0, e1, chroma, flg, fm, np) \ argument 103 .fetch_mode = fm, \ 110 flg, fm, np, th) \ argument 122 .fetch_mode = fm, \ [all …]
|
| /OK3568_Linux_fs/buildroot/package/iotop/ |
| H A D | 0001-Fix-build-error-with-Python-3.patch | 4 Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm> 7 From: Christophe Vu-Brugier <cvubrugier@fastmail.fm> 16 Signed-off-by: Christophe Vu-Brugier <cvubrugier@fastmail.fm>
|