| /OK3568_Linux_fs/kernel/lib/ |
| H A D | assoc_array.c | 451 static bool assoc_array_insert_in_empty_tree(struct assoc_array_edit *edit) in assoc_array_insert_in_empty_tree() argument 461 edit->new_meta[0] = assoc_array_node_to_ptr(new_n0); in assoc_array_insert_in_empty_tree() 462 edit->leaf_p = &new_n0->slots[0]; in assoc_array_insert_in_empty_tree() 463 edit->adjust_count_on = new_n0; in assoc_array_insert_in_empty_tree() 464 edit->set[0].ptr = &edit->array->root; in assoc_array_insert_in_empty_tree() 465 edit->set[0].to = assoc_array_node_to_ptr(new_n0); in assoc_array_insert_in_empty_tree() 474 static bool assoc_array_insert_into_terminal_node(struct assoc_array_edit *edit, in assoc_array_insert_into_terminal_node() argument 490 edit->segment_cache[ASSOC_ARRAY_FAN_OUT] = result->terminal_node.slot; in assoc_array_insert_into_terminal_node() 514 edit->leaf_p = &node->slots[i]; in assoc_array_insert_into_terminal_node() 515 edit->dead_leaf = node->slots[i]; in assoc_array_insert_into_terminal_node() [all …]
|
| /OK3568_Linux_fs/buildroot/package/noto/ |
| H A D | 70-fonts-noto-cjk.conf | 11 <edit name="family" mode="prepend"> 13 </edit> 23 <edit name="family" mode="prepend"> 25 </edit> 35 <edit name="family" mode="prepend" binding="strong"> 37 </edit> 47 <edit name="family" mode="prepend" binding="strong"> 49 </edit> 59 <edit name="family" mode="prepend"> 61 </edit> [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-extended/python-blivet/python3-blivetgui/ |
| H A D | 0002-Use-symbolic-list-add-and-edit-icons.patch | 8 Subject: [PATCH] Use symbolic list-add and edit- icons (Adwaita dropped old 30 - icon_delete = Gtk.IconTheme.load_icon(icon_theme, "edit-delete", 16, 0) 31 - icon_edit = Gtk.IconTheme.load_icon(icon_theme, "edit-select-all", 16, 0) 32 - icon_misc = Gtk.IconTheme.load_icon(icon_theme, "edit-paste", 16, 0) 34 + icon_delete = Gtk.IconTheme.load_icon(icon_theme, "edit-delete-symbolic", 16, 0) 35 + icon_edit = Gtk.IconTheme.load_icon(icon_theme, "edit-select-all-symbolic", 16, 0) 36 + icon_misc = Gtk.IconTheme.load_icon(icon_theme, "edit-paste-symbolic", 16, 0) 38 self.action_icons = {"add": icon_add, "delete": icon_delete, "edit": icon_edit, 49 - icon_delete = Gtk.IconTheme.load_icon(icon_theme, "edit-delete", 16, 0) 50 - icon_edit = Gtk.IconTheme.load_icon(icon_theme, "edit-select-all", 16, 0) [all …]
|
| /OK3568_Linux_fs/kernel/security/keys/ |
| H A D | keyring.c | 1296 struct assoc_array_edit *edit; in __key_link_begin() local 1314 edit = assoc_array_insert(&keyring->keys, in __key_link_begin() 1318 if (IS_ERR(edit)) { in __key_link_begin() 1319 ret = PTR_ERR(edit); in __key_link_begin() 1326 if (!edit->dead_leaf) { in __key_link_begin() 1333 *_edit = edit; in __key_link_begin() 1338 assoc_array_cancel_edit(edit); in __key_link_begin() 1384 struct assoc_array_edit *edit) in __key_link_end() argument 1391 if (edit) { in __key_link_end() 1392 if (!edit->dead_leaf) { in __key_link_end() [all …]
|
| H A D | key.c | 505 struct assoc_array_edit *edit = NULL; in key_instantiate_and_link() local 524 ret = __key_link_begin(keyring, &key->index_key, &edit); in key_instantiate_and_link() 538 ret = __key_instantiate_and_link(key, &prep, keyring, authkey, &edit); in key_instantiate_and_link() 542 __key_link_end(keyring, &key->index_key, edit); in key_instantiate_and_link() 579 struct assoc_array_edit *edit = NULL; in key_reject_and_link() local 594 link_ret = __key_link_begin(keyring, &key->index_key, &edit); in key_reject_and_link() 596 __key_link_end(keyring, &key->index_key, edit); in key_reject_and_link() 618 __key_link(keyring, key, &edit); in key_reject_and_link() 628 __key_link_end(keyring, &key->index_key, edit); in key_reject_and_link() 827 struct assoc_array_edit *edit = NULL; in key_create_or_update() local [all …]
|
| H A D | request_key.c | 372 struct assoc_array_edit *edit = NULL; in construct_alloc_key() local 404 ret = __key_link_begin(dest_keyring, &ctx->index_key, &edit); in construct_alloc_key() 421 __key_link(dest_keyring, key, &edit); in construct_alloc_key() 425 __key_link_end(dest_keyring, &ctx->index_key, edit); in construct_alloc_key() 440 __key_link(dest_keyring, key, &edit); in construct_alloc_key() 441 __key_link_end(dest_keyring, &ctx->index_key, edit); in construct_alloc_key() 457 __key_link_end(dest_keyring, &ctx->index_key, edit); in construct_alloc_key()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/strace/strace/ |
| H A D | 0001-strace-fix-reproducibilty-issues.patch | 23 -# Generated by $0 from $input ($name $arg0 $args); do not edit." 24 +# Generated by $(basename $0) from $input ($name $arg0 $args); do not edit." 32 - printf '# Generated by %s from %s; do not edit.\n' "$0" "$input" 33 + printf '# Generated by %s from %s; do not edit.\n' "$(basename $0)" "$input"
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | assoc_array.h | 73 extern void assoc_array_insert_set_object(struct assoc_array_edit *edit, 80 extern void assoc_array_apply_edit(struct assoc_array_edit *edit); 81 extern void assoc_array_cancel_edit(struct assoc_array_edit *edit);
|
| /OK3568_Linux_fs/buildroot/support/scripts/ |
| H A D | apply-patches.sh | 124 git commit --no-edit -m "init" 138 git commit --allow-empty --no-edit -m "${patch}" 141 git commit --allow-empty --amend --no-edit
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libsmi/libsmi/ |
| H A D | libsmi-fix-the-test-dump-files.patch | 92 -// This module has been generated by smidump 0.4.5. Do not edit. 93 +// This module has been generated by smidump 0.4.8. Do not edit. 140 -// This module has been generated by smidump 0.4.5. Do not edit. 141 +// This module has been generated by smidump 0.4.8. Do not edit. 171 -// This module has been generated by smidump 0.4.5. Do not edit. 172 +// This module has been generated by smidump 0.4.8. Do not edit. 258 -// This module has been generated by smidump 0.4.5. Do not edit. 259 +// This module has been generated by smidump 0.4.8. Do not edit.
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/openbox/files/ |
| H A D | 0001-Makefile.am-avoid-race-when-creating-autostart-direc.patch | 35 @@ -505,14 +505,12 @@ edit = $(SED) \ 42 @$(edit) $< >$(top_builddir)/$@ 49 @$(edit) $< >$(top_builddir)/$@
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/ |
| H A D | edit.py | 31 def edit(args): function 44 parser.set_defaults(func=edit, parserecipes=True)
|
| /OK3568_Linux_fs/buildroot/package/source-han-sans/source-han-sans-tw/ |
| H A D | 44-source-han-sans-tw.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/buildroot/package/source-han-sans/source-han-sans-kr/ |
| H A D | 44-source-han-sans-kr.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/buildroot/package/source-han-sans/source-han-sans-cn/ |
| H A D | 44-source-han-sans-cn.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-jp-fonts/ |
| H A D | 44-source-han-sans-jp.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/buildroot/package/source-han-sans/source-han-sans-hk/ |
| H A D | 44-source-han-sans-hk.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-cn-fonts/ |
| H A D | 44-source-han-sans-cn.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/buildroot/package/source-han-sans/source-han-sans-jp/ |
| H A D | 44-source-han-sans-jp.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-kr-fonts/ |
| H A D | 44-source-han-sans-kr.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/ttf-fonts/source-han-sans-tw-fonts/ |
| H A D | 44-source-han-sans-tw.conf | 14 <edit name="weight" mode="assign"> 16 </edit>
|
| /OK3568_Linux_fs/device/rockchip/common/build-hooks/ |
| H A D | 05-partitions.sh | 30 edit-parts) FUNC=rk_partition_edit ;; 78 edit-parts) rk_partition_edit $@ ;;
|
| /OK3568_Linux_fs/device/rockchip/common/scripts/ |
| H A D | mk-partitions.sh | 30 edit-parts) FUNC=rk_partition_edit ;; 78 edit-parts) rk_partition_edit $@ ;;
|
| /OK3568_Linux_fs/app/forlinx/forlinx_qt/simplebrowser/data/ |
| H A D | simplebrowser.qrc | 8 <file alias="edit-clear.png">3rdparty/edit-clear.png</file>
|
| /OK3568_Linux_fs/app/forlinx/forlinx_up4_qt/simplebrowser/data/ |
| H A D | simplebrowser.qrc | 8 <file alias="edit-clear.png">3rdparty/edit-clear.png</file>
|