Home
last modified time | relevance | path

Searched +full:signal +full:- +full:id (Results 1 – 25 of 1057) sorted by relevance

12345678910>>...43

/OK3568_Linux_fs/kernel/tools/testing/selftests/net/mptcp/
H A Dpm_netlink.sh2 # SPDX-License-Identifier: GPL-2.0
8 echo "Usage: $0 [ -h ]"
26 rndh=$(printf %x $sec)-$(mktemp -u XXXXXX)
27 ns1="ns1-$rndh"
33 rm -f $err
37 ip -Version > /dev/null 2>&1
38 if [ $? -ne 0 ];then
46 ip -net $ns1 link set lo up
47 ip netns exec $ns1 sysctl -q net.mptcp.enabled=1
57 printf "%-50s %s" "$msg"
[all …]
/OK3568_Linux_fs/u-boot/scripts/kconfig/
H A Dgconf.glade1 <?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
3 <glade-interface>
5 <widget class="GtkWindow" id="window1">
20 <signal name="destroy" handler="on_window1_destroy" object="window1"/>
21 …<signal name="size_request" handler="on_window1_size_request" object="vpaned1" last_modification_t…
22 …<signal name="delete_event" handler="on_window1_delete_event" object="window1" last_modification_t…
25 <widget class="GtkVBox" id="vbox1">
31 <widget class="GtkMenuBar" id="menubar1">
35 <widget class="GtkMenuItem" id="file1">
41 <widget class="GtkMenu" id="file1_menu">
[all …]
/OK3568_Linux_fs/kernel/scripts/kconfig/
H A Dgconf.glade1 <?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
3 <glade-interface>
5 <widget class="GtkWindow" id="window1">
20 <signal name="destroy" handler="on_window1_destroy" object="window1"/>
21 …<signal name="size_request" handler="on_window1_size_request" object="vpaned1" last_modification_t…
22 …<signal name="delete_event" handler="on_window1_delete_event" object="window1" last_modification_t…
25 <widget class="GtkVBox" id="vbox1">
31 <widget class="GtkMenuBar" id="menubar1">
35 <widget class="GtkMenuItem" id="file1">
41 <widget class="GtkMenu" id="file1_menu">
[all …]
/OK3568_Linux_fs/buildroot/support/kconfig/
H A Dgconf.glade1 <?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
3 <glade-interface>
5 <widget class="GtkWindow" id="window1">
20 <signal name="destroy" handler="on_window1_destroy" object="window1"/>
21 …<signal name="size_request" handler="on_window1_size_request" object="vpaned1" last_modification_t…
22 …<signal name="delete_event" handler="on_window1_delete_event" object="window1" last_modification_t…
25 <widget class="GtkVBox" id="vbox1">
31 <widget class="GtkMenuBar" id="menubar1">
35 <widget class="GtkMenuItem" id="file1">
41 <widget class="GtkMenu" id="file1_menu">
[all …]
/OK3568_Linux_fs/kernel/drivers/counter/
H A D104-quad-8.c1 // SPDX-License-Identifier: GPL-2.0
3 * Counter driver for the ACCES 104-QUAD-8
6 * This driver supports the ACCES 104-QUAD-8 and ACCES 104-QUAD-4.
27 MODULE_PARM_DESC(base, "ACCES 104-QUAD-8 base addresses");
32 * struct quad8_iio - IIO device private data structure
65 /* Borrow Toggle flip-flop */
67 /* Carry Toggle flip-flop */
73 /* Reset and Load Signal Decoders */
106 const int base_offset = priv->base + 2 * chan->channel; in quad8_read_raw()
114 if (chan->type == IIO_INDEX) { in quad8_read_raw()
[all …]
H A Dcounter.c1 // SPDX-License-Identifier: GPL-2.0
32 [COUNTER_COUNT_MODE_NON_RECYCLE] = "non-recycle",
33 [COUNTER_COUNT_MODE_MODULO_N] = "modulo-n"
38 struct counter_signal *signal, void *priv, in counter_signal_enum_read() argument
45 if (!e->get) in counter_signal_enum_read()
46 return -EINVAL; in counter_signal_enum_read()
48 err = e->get(counter, signal, &index); in counter_signal_enum_read()
52 if (index >= e->num_items) in counter_signal_enum_read()
53 return -EINVAL; in counter_signal_enum_read()
55 return sprintf(buf, "%s\n", e->items[index]); in counter_signal_enum_read()
[all …]
/OK3568_Linux_fs/external/mpp/osal/inc/
H A Dmpp_thread.h8 * http://www.apache.org/licenses/LICENSE-2.0
20 * Author : herman.chen@rock-chips.com
31 * Downloaded from http://www.sourceware.org/pthreads-win32/
154 RK_S32 signal();
175 return pthread_cond_wait(&mCond, &mutex->mMutex); in wait()
193 return pthread_cond_timedwait(&mCond, &mutex->mMutex, &ts); in timedwait()
195 inline RK_S32 Condition::signal() in signal() function
215 void signal() { mCondition.signal(); } in signal() function
224 // Thread lock / signal is distinguished by its source
242 MppThreadStatus get_status(MppThreadSignal id = THREAD_WORK);
[all …]
/OK3568_Linux_fs/u-boot/include/
H A Dreset.h4 * SPDX-License-Identifier: GPL-2.0
13 * A reset is a hardware signal indicating that a HW module (or IP block, or
14 * sometimes an entire off-CPU chip) reset all of its internal state to some
15 * known-good initial state. Drivers will often reset HW modules when they
24 * hardware it manages often has this capability. reset-uclass.h describes the
34 * struct reset_ctl - A handle to (allowing control of) a single reset signal.
40 * reset signal to operate upon.
42 * @dev: The device which implements the reset signal.
43 * @id: The reset signal ID within the provider.
45 * Currently, the reset API assumes that a single integer ID is enough to
[all …]
H A Dclk.h6 * SPDX-License-Identifier: GPL-2.0+
16 * A clock is a hardware signal that oscillates autonomously at a specific
18 * signal to drive their operation. Clock signals are typically generated
35 * struct clk - A handle to (allowing control of) a single clock.
40 * other clock APIs to identify which clock signal to operate upon.
42 * @dev: The device which implements the clock signal.
43 * @id: The clock signal ID within the provider.
45 * Currently, the clock API assumes that a single integer ID is enough to
46 * identify and configure any clock signal for any clock provider. If this
49 * information, or (b) replace the id field with an opaque pointer, which the
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dcounter.h1 /* SPDX-License-Identifier: GPL-2.0 */
31 * struct counter_signal_ext - Counter Signal extensions
40 struct counter_signal *signal, void *priv, char *buf);
42 struct counter_signal *signal, void *priv,
48 * struct counter_signal - Counter Signal node
49 * @id: unique ID used to identify signal
50 * @name: device-specific Signal name; ideally, this should match the name
52 * @ext: optional array of Counter Signal extensions
53 * @num_ext: number of Counter Signal extensions specified in @ext
57 int id; member
[all …]
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/mailbox/
H A Dqcom-ipcc.yaml1 # SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/mailbox/qcom-ipcc.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Qualcomm Technologies, Inc. Inter-Processor Communication Controller
10 - Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13 The Inter-Processor Communication Controller (IPCC) is a centralized hardware
14 to route interrupts across various subsystems. It involves a three-level
15 addressing scheme called protocol, client and signal. For example, consider an
18 a case, the client would be Modem (client-id is 2) and the signal would be
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_events.c26 #include <linux/sched/signal.h>
46 * Each signal event needs a 64-bit signal slot where the signaler will write
50 * Individual signal events use their event_id as slot index.
61 return page->kernel_address; in page_slots()
82 page->kernel_address = backing_store; in allocate_signal_page()
83 page->need_to_free_pages = true; in allocate_signal_page()
84 pr_debug("Allocated new event signal page at %p, for process %p\n", in allocate_signal_page()
97 int id; in allocate_event_notification_slot() local
99 if (!p->signal_page) { in allocate_event_notification_slot()
100 p->signal_page = allocate_signal_page(p); in allocate_event_notification_slot()
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Ddecorators.py4 # SPDX-License-Identifier: MIT
16 import signal
32 s = i[0].id()
39 testname = s.split('.')[-1]
128 logfile = os.path.join(os.getcwd(),'results-'+caller+'.'+timestamp+'.log')
129 linkfile = os.path.join(os.getcwd(),'results-'+caller+'.log')
168 format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
177 tcid = self.id()
179 if tcid == name.id():
184 if tcid == name.id():
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/
H A Dplacemanager_utils.cpp8 ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
20 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
23 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
53 QPlaceIdReply *saveReply = manager->savePlace(place); in doSavePlace()
56 *placeId = saveReply->id(); in doSavePlace()
59 if (saveReply->id().isEmpty() && expectedError == QPlaceReply::NoError) { in doSavePlace()
60 qWarning("ID is empty in reply for save operation"); in doSavePlace()
61 qWarning() << "Error string = " << saveReply->errorString(); in doSavePlace()
[all …]
/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/include/bits/types/
H A Dsiginfo_t.h10 # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 4)
12 # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 3)
15 /* Some fields of siginfo_t have architecture-specific variations. */
16 #include <bits/siginfo-arch.h>
38 int si_signo; /* Signal number. */
40 int si_errno; /* If non-zero, an errno value associated with
41 this signal, as defined in <errno.h>. */
42 int si_code; /* Signal code. */
58 __pid_t si_pid; /* Sending process ID. */
59 __uid_t si_uid; /* Real user ID of sending process. */
[all …]
/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/include/bits/types/
H A Dsiginfo_t.h10 # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 4)
12 # define __SI_PAD_SIZE ((__SI_MAX_SIZE / sizeof (int)) - 3)
15 /* Some fields of siginfo_t have architecture-specific variations. */
16 #include <bits/siginfo-arch.h>
38 int si_signo; /* Signal number. */
40 int si_errno; /* If non-zero, an errno value associated with
41 this signal, as defined in <errno.h>. */
42 int si_code; /* Signal code. */
58 __pid_t si_pid; /* Sending process ID. */
59 __uid_t si_uid; /* Real user ID of sending process. */
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqplacemanagerengine_nokiav2.cpp14 ** and conditions see http://www.qt.io/terms-conditions. For further
15 ** information use the contact form at http://www.qt.io/contact-us.
31 ** met: http://www.gnu.org/licenses/gpl-2.0.html.
67 "eat-drink\0"
68 "going-out\0"
69 "sights-museums\0"
73 "leisure-outdoor\0"
74 "administrative-areas-buildings\0"
75 "natural-geographical\0"
76 "petrol-station\0"
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_core/
H A Dtst_supplier.qml8 ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
20 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
23 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
35 id: testCase
39 Supplier { id: emptySupplier }
49 id: qmlSupplier
51 supplierId: "test-supplier-id"
53 url: "http://example.com/test-supplier-id"
[all …]
H A Dtst_placesearchmodel.qml8 ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
20 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
23 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
36 id: testCase
41 id: testPlugin
53 id: favoritePlugin
58 id: uninitializedPlugin
62 id: testCategory1
[all …]
H A Dtst_category.qml8 ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
20 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
23 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
35 id: testCase
39 Category { id: emptyCategory }
51 id: qmlCategory
55 categoryId: "test-category-id"
61 parameters.singleUrl = "http://example.com/icons/test-category.png"
[all …]
H A Dtst_placesearchsuggestionmodel.qml8 ** $QT_BEGIN_LICENSE:GPL-EXCEPT$
14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
20 ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
23 ** be met: https://www.gnu.org/licenses/gpl-3.0.html.
36 id: testCase
41 id: testModel
45 id: testModelError
49 id: testPlugin
55 id: nonExistantPlugin
[all …]
/OK3568_Linux_fs/kernel/Documentation/driver-api/
H A Dgeneric-counter.rst1 .. SPDX-License-Identifier: GPL-2.0
29 * Signal:
33 Association of a Signal, and evaluation trigger, with a Count.
38 SIGNAL section in Theory
39 ------
40 A Signal represents a stream of data. This is the input data that is
42 signal output line of a rotary encoder. Not all counter devices provide
43 user access to the Signal data, so exposure is optional for drivers.
45 When the Signal data is available for user access, the Generic Counter
46 interface provides the following available signal values:
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/places/items/
H A DSearchBar.qml14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
60 signal doSearch(string searchText)
61 signal searchTextChanged(string searchText)
62 signal showCategories()
63 signal goBack()
64 signal showMap()
80 id: searchBar
86 id: searchText
99 id: searchButton
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/display/dc/core/
H A Ddc_link.c2 * Copyright 2012-15 Advanced Micro Devices, Inc.
83 if (link->hpd_gpio) { in dc_link_destruct()
84 dal_gpio_destroy_irq(&link->hpd_gpio); in dc_link_destruct()
85 link->hpd_gpio = NULL; in dc_link_destruct()
88 if (link->ddc) in dc_link_destruct()
89 dal_ddc_service_destroy(&link->ddc); in dc_link_destruct()
91 if (link->panel_cntl) in dc_link_destruct()
92 link->panel_cntl->funcs->destroy(&link->panel_cntl); in dc_link_destruct()
94 if (link->link_enc) in dc_link_destruct()
95 link->link_enc->funcs->destroy(&link->link_enc); in dc_link_destruct()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/map/
H A DMapComponent.qml14 ** and conditions see https://www.qt.io/terms-conditions. For further
15 ** information use the contact form at https://www.qt.io/contact-us.
58 id: map
64 property int lastX : -1
65 property int lastY : -1
66 property int pressX : -1
67 property int pressY : -1
76 signal showGeocodeInfo()
77 signal geocodeFinished()
78 signal routeError()
[all …]

12345678910>>...43