HomeSort by relevance Sort by last modified time
    Searched defs:signal (Results 26 - 50 of 419) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/skia/include/private/
SkSemaphore.h 21 // Generally it's better to call signal(n) instead of signal() n times.
22 void signal(int n = 1);
60 inline void SkBaseSemaphore::signal(int n) { function in class:SkBaseSemaphore
67 // If n == 5 and prev == -3, there are 3 threads sleeping and we signal
  /external/skia/src/core/
SkSemaphore.cpp 32 void signal(int n) { function in struct:SkBaseSemaphore::OSSemaphore
55 void signal(int n) { function in struct:SkBaseSemaphore::OSSemaphore
70 void signal(int n) { while (n --> 0) { sem_post(&fSemaphore); } } function in struct:SkBaseSemaphore::OSSemaphore
82 fOSSemaphore->signal(n);
  /external/skqp/include/private/
SkSemaphore.h 21 // Generally it's better to call signal(n) instead of signal() n times.
22 void signal(int n = 1);
60 inline void SkBaseSemaphore::signal(int n) { function in class:SkBaseSemaphore
67 // If n == 5 and prev == -3, there are 3 threads sleeping and we signal
  /external/skqp/src/core/
SkSemaphore.cpp 32 void signal(int n) { function in struct:SkBaseSemaphore::OSSemaphore
55 void signal(int n) { function in struct:SkBaseSemaphore::OSSemaphore
70 void signal(int n) { while (n --> 0) { sem_post(&fSemaphore); } } function in struct:SkBaseSemaphore::OSSemaphore
82 fOSSemaphore->signal(n);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
decim54.c 20 * Description:Decimation of 16kHz signal to 12.8kHz *
36 Word16 * sig, /* input: signal to downsampling */
37 Word16 * sig_d, /* output: downsampled signal */
68 Word16 sig16k[], /* input: signal to downsampling */
70 Word16 sig12k8[], /* output: decimated signal */
75 Word16 signal[L_FRAME16k + (2 * NB_COEF_DOWN)]; local
77 Copy(mem, signal, 2 * NB_COEF_DOWN);
79 Copy(sig16k, signal + (2 * NB_COEF_DOWN), lg);
83 Down_samp(signal + NB_COEF_DOWN, sig12k8, lg_down);
85 Copy(signal + lg, mem, 2 * NB_COEF_DOWN)
    [all...]
  /frameworks/base/libs/hwui/thread/
Signal.h 27 class Signal {
29 explicit Signal(Condition::WakeUpType type = Condition::WAKE_UP_ALL)
31 ~Signal() {}
33 void signal() { function in class:android::uirenderer::Signal
38 mCondition.signal(mType);
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
sync.h 66 void signal() { function in class:Condition
  /hardware/qcom/wlan/qcwcn/wifi_hal/
sync.h 89 void signal() { function in class:Condition
  /libcore/ojluni/src/main/java/java/util/concurrent/locks/
Condition.java 92 * <b>notEmpty.signal();</b>
106 * <b>notFull.signal();</b>
134 * {@linkplain #await waiting} and {@linkplain #signal signalling} methods.
190 * <li>Some other thread invokes the {@link #signal} method for this
225 * method return in response to a signal. In that case the implementation
226 * must ensure that the signal is redirected to another waiting thread, if
241 * <li>Some other thread invokes the {@link #signal} method for this
278 * <li>Some other thread invokes the {@link #signal} method for this
344 * method return in response to a signal, or over indicating the elapse
346 * must ensure that the signal is redirected to another waiting thread, i
469 void signal(); method in interface:Condition
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetAgIndicatorEnableState.java 24 public boolean signal; field in class:HeadsetAgIndicatorEnableState
31 signal = newSignal;
41 return service == other.service && roam == other.roam && signal == other.signal
50 if (signal) result += 4;
65 .append(", signal=")
66 .append(signal)
  /prebuilts/go/darwin-x86/src/os/
exec_windows.go 57 func (p *Process) signal(sig Signal) error { func
  /prebuilts/go/darwin-x86/src/os/signal/
signal.go 5 package signal package
15 m map[chan<- os.Signal]*handler
16 // Map a signal to the number of channels receiving it.
27 c chan<- os.Signal
48 // receive them and either reset the signal handlers to their original values
50 func cancel(sigs []os.Signal, action func(int)) {
85 func Ignore(sig ...os.Signal) {
89 // Notify causes package signal to relay incoming signals to c.
93 // Package signal will not block sending to c: the caller must ensure
95 // signal rate. For a channel used for notification of just one signal value
    [all...]
signal_plan9.go 5 package signal package
12 var sigtab = make(map[os.Signal]int)
33 func signum(sig os.Signal) int {
signal_test.go 7 package signal package
25 func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
29 t.Fatalf("signal was %v, want %v", s, sig)
36 // Test that basic signal handling works.
39 c := make(chan os.Signal, 1)
49 c1 := make(chan os.Signal, 1)
80 sig := make(chan os.Signal, 1)
117 // Send SIGWINCH. By default this signal should be ignored.
122 c1 := make(chan os.Signal, 1
    [all...]
signal_unix.go 7 package signal package
22 process(syscall.Signal(signal_recv()))
35 func signum(sig os.Signal) int {
37 case syscall.Signal:
  /prebuilts/go/linux-x86/src/os/
exec_windows.go 57 func (p *Process) signal(sig Signal) error { func
  /prebuilts/go/linux-x86/src/os/signal/
signal.go 5 package signal package
15 m map[chan<- os.Signal]*handler
16 // Map a signal to the number of channels receiving it.
27 c chan<- os.Signal
48 // receive them and either reset the signal handlers to their original values
50 func cancel(sigs []os.Signal, action func(int)) {
85 func Ignore(sig ...os.Signal) {
89 // Notify causes package signal to relay incoming signals to c.
93 // Package signal will not block sending to c: the caller must ensure
95 // signal rate. For a channel used for notification of just one signal value
    [all...]
signal_plan9.go 5 package signal package
12 var sigtab = make(map[os.Signal]int)
33 func signum(sig os.Signal) int {
signal_test.go 7 package signal package
25 func waitSig(t *testing.T, c <-chan os.Signal, sig os.Signal) {
29 t.Fatalf("signal was %v, want %v", s, sig)
36 // Test that basic signal handling works.
39 c := make(chan os.Signal, 1)
49 c1 := make(chan os.Signal, 1)
80 sig := make(chan os.Signal, 1)
117 // Send SIGWINCH. By default this signal should be ignored.
122 c1 := make(chan os.Signal, 1
    [all...]
signal_unix.go 7 package signal package
22 process(syscall.Signal(signal_recv()))
35 func signum(sig os.Signal) int {
37 case syscall.Signal:
  /system/bt/test/suite/rfcomm/
rfcomm_unittest.cc 43 sock_connect_signal_t signal; local
47 len = read(fd, &signal, sizeof(signal));
48 EXPECT_TRUE(len == sizeof(signal))
49 << "Connection signal not read from RFCOMM socket. Bytes read: " << len;
51 EXPECT_TRUE(signal.bd_addr == bt_remote_bdaddr_)
53 EXPECT_TRUE(channel == signal.channel)
55 << signal.channel;
84 sock_connect_signal_t signal; local
92 len = read(fd, &signal, sizeof(signal))
    [all...]
  /tools/test/connectivity/acts/framework/acts/controllers/utils_lib/commands/
shell.py 16 import signal
86 self.signal(identifier, 0)
202 timeout: The time to wait for all programs to die. Each signal will
210 signal_queue = [signal.SIGINT, signal.SIGTERM, signal.SIGKILL]
216 self.signal(pid, sig)
228 def signal(self, pid, sig): member in class:ShellCommand
229 """Sends a specific signal to a program.
233 sig: The signal to send
    [all...]
  /tools/test/connectivity/tools/lab/utils/
shell.py 16 import signal
86 self.signal(identifier, 0)
225 timeout: The time to wait for all programs to die. Each signal will
233 signal_queue = [signal.SIGINT, signal.SIGTERM, signal.SIGKILL]
239 self.signal(pid, sig)
251 def signal(self, pid, sig): member in class:ShellCommand
252 """Sends a specific signal to a program.
256 sig: The signal to send
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
MtpManagerTest.java 62 final CancellationSignal signal = new CancellationSignal(); local
69 mManager.readEvent(mUsbDevice.getDeviceId(), signal);
79 signal.cancel();
107 final CancellationSignal signal = new CancellationSignal(); local
108 MtpEvent event = mManager.readEvent(mUsbDevice.getDeviceId(), signal);
  /external/guava/guava-tests/test/com/google/common/collect/
InternersTest.java 75 WeakReference<Integer> signal = new WeakReference<Integer>(canonical); local
78 GcFinalization.awaitClear(signal);

Completed in 741 milliseconds

12 3 4 5 6 7 8 91011>>