Home
last modified time | relevance | path

Searched refs:po (Results 1 – 25 of 203) sorted by relevance

123456789

/OK3568_Linux_fs/kernel/drivers/net/ppp/
H A Dpppoe.c177 static int __set_item(struct pppoe_net *pn, struct pppox_sock *po) in __set_item() argument
179 int hash = hash_item(po->pppoe_pa.sid, po->pppoe_pa.remote); in __set_item()
184 if (cmp_2_addr(&ret->pppoe_pa, &po->pppoe_pa) && in __set_item()
185 ret->pppoe_ifindex == po->pppoe_ifindex) in __set_item()
191 po->next = pn->hash_table[hash]; in __set_item()
192 pn->hash_table[hash] = po; in __set_item()
226 struct pppox_sock *po; in get_item() local
229 po = __get_item(pn, sid, addr, ifindex); in get_item()
230 if (po) in get_item()
231 sock_hold(sk_pppox(po)); in get_item()
[all …]
H A Dpptp.c134 struct pppox_sock *po = pppox_sk(sk); in pptp_xmit() local
136 struct pptp_opt *opt = &po->proto.pptp; in pptp_xmit()
151 if (sk_pppox(po)->sk_state & PPPOX_DEAD) in pptp_xmit()
257 struct pppox_sock *po = pppox_sk(sk); in pptp_rcv_core() local
258 struct pptp_opt *opt = &po->proto.pptp; in pptp_rcv_core()
325 ppp_input(&po->chan, skb); in pptp_rcv_core()
336 struct pppox_sock *po; in pptp_rcv() local
358 po = lookup_chan(htons(header->call_id), iph->saddr); in pptp_rcv()
359 if (po) { in pptp_rcv()
362 return sk_receive_skb(sk_pppox(po), skb, 0); in pptp_rcv()
[all …]
/OK3568_Linux_fs/kernel/net/packet/
H A Daf_packet.c189 static void *packet_previous_frame(struct packet_sock *po,
238 static void __fanout_unlink(struct sock *sk, struct packet_sock *po);
239 static void __fanout_link(struct sock *sk, struct packet_sock *po);
246 static struct net_device *packet_cached_dev_get(struct packet_sock *po) in packet_cached_dev_get() argument
251 dev = rcu_dereference(po->cached_dev); in packet_cached_dev_get()
259 static void packet_cached_dev_assign(struct packet_sock *po, in packet_cached_dev_assign() argument
262 rcu_assign_pointer(po->cached_dev, dev); in packet_cached_dev_assign()
265 static void packet_cached_dev_reset(struct packet_sock *po) in packet_cached_dev_reset() argument
267 RCU_INIT_POINTER(po->cached_dev, NULL); in packet_cached_dev_reset()
270 static bool packet_use_direct_xmit(const struct packet_sock *po) in packet_use_direct_xmit() argument
[all …]
H A Ddiag.c13 static int pdiag_put_info(const struct packet_sock *po, struct sk_buff *nlskb) in pdiag_put_info() argument
17 pinfo.pdi_index = po->ifindex; in pdiag_put_info()
18 pinfo.pdi_version = po->tp_version; in pdiag_put_info()
19 pinfo.pdi_reserve = po->tp_reserve; in pdiag_put_info()
20 pinfo.pdi_copy_thresh = po->copy_thresh; in pdiag_put_info()
21 pinfo.pdi_tstamp = po->tp_tstamp; in pdiag_put_info()
24 if (po->running) in pdiag_put_info()
26 if (po->auxdata) in pdiag_put_info()
28 if (po->origdev) in pdiag_put_info()
30 if (po->has_vnet_hdr) in pdiag_put_info()
[all …]
/OK3568_Linux_fs/kernel/net/ceph/
H A Dpagevec.c66 int po = off & ~PAGE_MASK; in ceph_copy_user_to_page_vector() local
71 l = min_t(int, PAGE_SIZE-po, left); in ceph_copy_user_to_page_vector()
72 bad = copy_from_user(page_address(pages[i]) + po, data, l); in ceph_copy_user_to_page_vector()
77 po += l - bad; in ceph_copy_user_to_page_vector()
78 if (po == PAGE_SIZE) { in ceph_copy_user_to_page_vector()
79 po = 0; in ceph_copy_user_to_page_vector()
92 size_t po = off & ~PAGE_MASK; in ceph_copy_to_page_vector() local
96 size_t l = min_t(size_t, PAGE_SIZE-po, left); in ceph_copy_to_page_vector()
98 memcpy(page_address(pages[i]) + po, data, l); in ceph_copy_to_page_vector()
101 po += l; in ceph_copy_to_page_vector()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/gettext/gettext-minimal-0.21/
H A DMakefile.in.in30 gettextsrcdir = $(datadir)/gettext/po
86 DISTFILESDEPS_ = update-po
97 .SUFFIXES: .po .gmo .sed .sin .nop .po-create .po-update
99 # The .pot file, stamp-po, .po files, and .gmo files appear in release tarballs.
109 # During .po -> .gmo conversion, take into account the most recent changes to
110 # the .pot file. This eliminates the need to update the .po files when the
111 # .pot file has changed, which would be troublesome if the .po files are put
114 .po.gmo:
117 …ON) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && $(GMSGFMT) -c --statistics --verbose -o $${lang}.…
120 $(MSGMERGE) $(MSGMERGE_FOR_MSGFMT_OPTION) -o $${lang}.1po $${lang}.po $(DOMAIN).pot && \
[all …]
/OK3568_Linux_fs/buildroot/package/gettext-tiny/
H A Dgettext-tiny.mk21 gettext-tools/po/Makevars.template \
22 gettext-runtime/po/boldquot.sed \
23 gettext-runtime/po/en@boldquot.header \
24 gettext-runtime/po/en@quot.header \
25 gettext-runtime/po/insert-header.sin \
26 gettext-runtime/po/quot.sed \
27 gettext-runtime/po/remove-potcdate.sin \
28 gettext-runtime/po/Rules-quot \
29 gettext-runtime/po/Makefile.in.in \
73 $(Q)mkdir -p $(HOST_DIR)/share/gettext-tiny/po
[all …]
/OK3568_Linux_fs/buildroot/package/pcmanfm/
H A D0001-po-de-po-fix-build-with-gettext-tiny.patch4 Subject: [PATCH] po/de.po: fix build with gettext-tiny
10 && rm -f $file && /home/buildroot/autobuild/instance-2/output-1/host/bin/msgfmt -o $file de.po
19 po/de.po | 3 +--
22 diff --git a/po/de.po b/po/de.po
24 --- a/po/de.po
25 +++ b/po/de.po
/OK3568_Linux_fs/kernel/tools/memory-model/
H A Dlinux-kernel.cat28 let acq-po = [Acquire] ; po ; [M]
29 let po-rel = [M] ; po ; [Release]
30 let po-unlock-rf-lock-po = po ; [UL] ; rf ; [LKR] ; po
37 ([M] ; fencerel(Before-atomic) ; [RMW] ; po? ; [M]) |
38 ([M] ; po? ; [RMW] ; fencerel(After-atomic) ; [M]) |
39 ([M] ; po? ; [LKW] ; fencerel(After-spinlock) ; [M]) |
40 ([M] ; po ; [UL] ; (co | po) ; [LKW] ;
42 let gp = po ; [Sync-rcu | Sync-srcu] ; po?
45 let nonrw-fence = strong-fence | po-rel | acq-po
50 (po ; [Release]) | ([Acquire] ; po)
[all …]
H A Dlinux-kernel.bell48 and unmatched-po = [unmatched] ; po ; [unmatched]
50 [unmatched-locks] ; po ; [unmatched-unlocks]
52 (unmatched-po ; unmatched-po))
64 and unmatched-po = ([unmatched] ; po ; [unmatched]) & loc
66 ([unmatched-locks] ; po ; [unmatched-unlocks]) & loc
68 (unmatched-po ; unmatched-po))
76 flag ~empty rcu-rscs & (po ; [Sync-srcu] ; po) as invalid-sleep
H A Dlock.cat44 let lk-rmw = ([LKR] ; po-loc ; [LKW]) \ (po ; po)
55 empty ([LKW] ; po-loc ; [LKR]) \ (po-loc ; [UL] ; po-loc) as lock-nest
71 let critical = ([LKW] ; po-loc ; [UL]) \ (po-loc ; [LKW | UL] ; po-loc)
80 let rfi-lf = ([LKW] ; po-loc ; [LF]) \ ([LKW] ; po-loc ; [UL] ; po-loc)
105 (* rfi for RU events: an RU may read from the last po-previous UL *)
106 let rfi-ru = ([UL] ; po-loc ; [RU]) \ ([UL] ; po-loc ; [LKW] ; po-loc)
/OK3568_Linux_fs/kernel/sound/usb/line6/
H A Dplayback.c73 short *po = (short *)urb_out->transfer_buffer; in create_impulse_test_signal() local
76 po[0] = pi[0]; in create_impulse_test_signal()
77 po[1] = 0; in create_impulse_test_signal()
79 po += 2; in create_impulse_test_signal()
84 unsigned char *po = urb_out->transfer_buffer; in create_impulse_test_signal() local
88 po[j] = pi[j]; in create_impulse_test_signal()
91 po[j] = 0; in create_impulse_test_signal()
94 po += bytes_per_frame; in create_impulse_test_signal()
115 __le16 *pi, *po, *buf_end; in add_monitor_signal() local
118 po = (__le16 *)urb_out->transfer_buffer; in add_monitor_signal()
[all …]
/OK3568_Linux_fs/external/xserver/debian/po/
H A Dda.po1 # #-#-#-#-# xorg-da.po (xfree86_4.3.0-3_da) #-#-#-#-#
9 # $Id: da.po 1763M 2004-10-11 07:13:16Z (local) $#
18 # Some information specific to po-debconf are available at
19 # /usr/share/doc/po-debconf/README-trans
20 # or http://www.debian.org/intl/l10n/po-debconf/README-trans#
22 # #-#-#-#-# da.po (xfree86_4.3.0-3_da) #-#-#-#-#
25 # $Id: da.po 1763M 2004-10-11 07:13:16Z (local) $#
34 # Some information specific to po-debconf are available at
35 # /usr/share/doc/po-debconf/README-trans
36 # or http://www.debian.org/intl/l10n/po-debconf/README-trans#
[all …]
H A Dkm.po1 # translation of km.po to
2 # translation of xserver-xorg_debian_po_km.po to
9 # Some information specific to po-debconf are available at
10 # /usr/share/doc/po-debconf/README-trans
11 # or http://www.debian.org/intl/l10n/po-debconf/README-trans#
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/apt/apt/
H A D0001-cmake-Do-not-build-po-files.patch4 Subject: [PATCH] cmake: Do not build po files
8 | The dependency target "update-po4a" of target "update-po" does not exist.
26 -add_subdirectory(po)
28 -# Link update-po4a into the update-po target
29 -add_dependencies(update-po update-po4a)
/OK3568_Linux_fs/yocto/meta-openembedded/meta-multimedia/recipes-multimedia/vorbis-tools/vorbis-tools/
H A Dgettext.patch20 po/Makefile.in
31 -SUBDIRS = po intl include share win32 @OPT_SUBDIRS@
32 -DIST_SUBDIRS = po intl include share win32 ogg123 oggenc oggdec ogginfo \
33 +SUBDIRS = po include share win32 @OPT_SUBDIRS@
34 +DIST_SUBDIRS = po include share win32 ogg123 oggenc oggdec ogginfo \
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/parted/files/
H A Dfix-doc-mandir.patch3 | for po in `ls -1 ./*.pt_BR.po 2>/dev/null`; do \
4 | make $(basename ${po%.pt_BR.po}); \
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/psmisc/
H A Dpsmisc.inc19 # Upstream has a custom autogen.sh which invokes po/update-potfiles as they
20 # don't ship a po/POTFILES.in (which is silly). Without that file gettext
21 # doesn't believe po/ is a gettext directory and won't generate po/Makefile.
23 ( cd ${S} && po/update-potfiles )
/OK3568_Linux_fs/kernel/Documentation/core-api/
H A Drefcount-vs-atomic.rst35 program order (po) relation (on the same CPU). It guarantees that
42 stores (all po-earlier instructions) on the same CPU are completed
43 before any po-later instruction is executed on the same CPU.
44 It also guarantees that all po-earlier stores on the same CPU
46 other CPUs before any po-later instruction is executed on the original
50 stores (all po-earlier instructions) on the same CPU are completed
51 before the operation. It also guarantees that all po-earlier
58 stores (all po-later instructions) on the same CPU are
60 po-later stores on the same CPU must propagate to all other CPUs
/OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/grub/files/
H A Dautogen.sh-exclude-pc.patch4 Subject: [PATCH] autogen.sh: exclude .pc from po/POTFILES.in
6 Exclude the .pc from po/POTFILES.in since quilt uses "patch --backup",
29 …grub-gen-asciih.c' ! -ipath './gnulib/*' ! -ipath './grub-core/lib/gnulib/*' |sort > po/POTFILES.in
30 … ! -ipath './gnulib/*' ! -ipath './grub-core/lib/gnulib/*' ! -path './.pc/*' |sort > po/POTFILES.in
31 find util -iname '*.in' ! -name Makefile.in |sort > po/POTFILES-shell.in
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/
H A Dwa_BE76 % COMINTAIRE: doet esse li minme ki po fr_BE.
81 % COMINTAIRE: doet esse li minme ki po fr_BE.
86 % COMINTAIRE: doet esse li minme ki po fr_BE.
95 % COMINTAIRE: doet esse li minme ki po fr_BE.
101 % po les moes et les djoûs.
104 % Po les rascoutis, on a metou "djn" po djun, et "djl" po djulete.
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/
H A Dwa_BE76 % COMINTAIRE: doet esse li minme ki po fr_BE.
81 % COMINTAIRE: doet esse li minme ki po fr_BE.
86 % COMINTAIRE: doet esse li minme ki po fr_BE.
95 % COMINTAIRE: doet esse li minme ki po fr_BE.
101 % po les moes et les djoûs.
104 % Po les rascoutis, on a metou "djn" po djun, et "djl" po djulete.
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/dpkg/
H A Ddpkg.inc42 # autotools_do_configure updates po/Makefile.in.in, we also need
43 # update dselect/po and scripts/po
44 cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/dselect/po/
45 cp -f ${STAGING_DATADIR_NATIVE}/gettext/po/Makefile.in.in ${S}/scripts/po/
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/gettext/gettext-minimal-0.21/aclocal/
H A Dpo.m41 # po.m4 serial 31 (gettext-0.20.2)
22 dnl Checks for all prerequisites of the po subdirectory.
32 dnl the gettext macros and po/Makefile.in.in are in sync.
64 rm -f messages.po
99 AC_CONFIG_COMMANDS([po-directories], [[
143 # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
145 # as $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
159 POFILES="$POFILES $srcdirpre$lang.po"
160 UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
321 # as $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/sym53c8xx_2/
H A Dsym_fw.c248 u_short *po; in sym_fw_setup_bus_addresses() local
255 po = (u_short *) fw->a_ofs; in sym_fw_setup_bus_addresses()
258 pa[i] = np->scripta_ba + po[i]; in sym_fw_setup_bus_addresses()
263 po = (u_short *) fw->b_ofs; in sym_fw_setup_bus_addresses()
266 pa[i] = np->scriptb_ba + po[i]; in sym_fw_setup_bus_addresses()
271 po = (u_short *) fw->z_ofs; in sym_fw_setup_bus_addresses()
274 pa[i] = np->scriptz_ba + po[i]; in sym_fw_setup_bus_addresses()

123456789