/external/webkit/WebKit/gtk/webkit/ |
webkitwebinspector.cpp | 127 * @web_inspector: the object on which the signal is emitted 154 * @web_inspector: the object on which the signal is emitted 155 * @return: %TRUE if the signal has been handled 174 * @web_inspector: the object on which the signal is emitted 175 * @return: %TRUE if the signal has been handled 193 * @web_inspector: the object on which the signal is emitted 194 * @return: %TRUE if the signal has been handled 211 * @web_inspector: the object on which the signal is emitted 212 * @return: %TRUE if the signal has been handled 219 * when this signal is emitted [all...] |
/external/dropbear/ |
svr-main.c | 198 dropbear_exit("Terminated by signal"); 341 dropbear_exit("signal() error"); 369 if (signal(SIGINT, sigintterm_handler) == SIG_ERR || 371 signal(SIGTERM, sigintterm_handler) == SIG_ERR || 373 signal(SIGPIPE, SIG_IGN) == SIG_ERR) { 374 dropbear_exit("signal() error"); 381 dropbear_exit("signal() error"); 383 if (signal(SIGSEGV, sigsegv_handler) == SIG_ERR) { 384 dropbear_exit("signal() error");
|
/external/jpeg/ |
cdjpeg.c | 15 #include <signal.h> /* to declare signal() */ 25 * Signal catcher to ensure that temporary files are removed before aborting. 51 signal(SIGINT, signal_catcher); 54 signal(SIGTERM, signal_catcher);
|
/external/opencore/baselibs/threadsafe_callback_ao/src/ |
threadsafe_queue.cpp | 43 iQueueReadySem.Signal(); 83 //Signal the AO. Only signal when the queue was previously empty in order 93 //instead just check AO status and signal if needed. It should 126 iQueueReadySem.Signal();
|
/external/webkit/WebCore/platform/network/qt/ |
SocketStreamHandleQt.cpp | 59 connect(m_socket, SIGNAL(connected()), this, SLOT(socketConnected())); 60 connect(m_socket, SIGNAL(readyRead()), this, SLOT(socketReadyRead())); 61 connect(m_socket, SIGNAL(disconnected()), this, SLOT(socketClosed())); 62 connect(m_socket, SIGNAL(error(QAbstractSocket::SocketError)), this, SLOT(socketError(QAbstractSocket::SocketError))); 64 connect(m_socket, SIGNAL(sslErrors(const QList<QSslError>&)), this, SLOT(socketSslErrors(const QList<QSslError>&)));
|
/external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/ |
pitch_ol.cpp | 92 scal_sig = pointer to buffer of scaled signal values (Word16) 93 scal_fac = scaled signal factor (Word16) 124 scal_sig = pointer to buffer of scaled signal values (Word16) 125 scal_fac = scaled signal factor (Word16) 176 Word16 scal_sig[], // i : scaled signal. 177 Word16 scal_fac, // i : scaled signal factor. 191 Word16 scal_sig[], // i : scaled signal. 192 Word16 scal_fac, // i : scaled signal factor. 294 Word16 scal_sig[], /* i : scaled signal. */ 295 Word16 scal_fac, /* i : scaled signal factor. * [all...] |
pre_proc.h | 106 Word16 signal[], /* Input/output signal */ 107 Word16 lg /* Lenght of signal */
|
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
pitch_ol.cpp | 93 scal_sig = pointer to buffer of scaled signal values (Word16) 94 scal_fac = scaled signal factor (Word16) 125 scal_sig = pointer to buffer of scaled signal values (Word16) 126 scal_fac = scaled signal factor (Word16) 177 Word16 scal_sig[], // i : scaled signal. 178 Word16 scal_fac, // i : scaled signal factor. 192 Word16 scal_sig[], // i : scaled signal. 193 Word16 scal_fac, // i : scaled signal factor. 295 Word16 scal_sig[], /* i : scaled signal. */ 296 Word16 scal_fac, /* i : scaled signal factor. * [all...] |
pre_proc.h | 106 Word16 signal[], /* Input/output signal */ 107 Word16 lg /* Lenght of signal */
|
/external/ppp/pppd/ |
main.c | 76 #include <signal.h> 615 new_phase(PHASE_DORMANT); /* allow signal to end holdoff */ 673 info("Terminating on signal %d", got_sigterm); 691 * setup_signals - initialize signal handling. 699 * Compute mask of all interesting signals and install signal handlers 700 * for each. Only one signal handler may be active at a time. Therefore, 710 #define SIGNAL(s, handler) do { \ 713 fatal("Couldn't establish signal handler (%d): %m", s); \ 718 SIGNAL(SIGHUP, hup); /* Hangup */ 719 SIGNAL(SIGINT, term); /* Interrupt * [all...] |
tty.c | 78 #include <signal.h> 554 * in order to wait for the carrier detect signal from the modem. 992 * Reset signal handlers. 994 signal(SIGHUP, SIG_IGN); /* Hangup */ 995 signal(SIGINT, SIG_DFL); /* Interrupt */ 996 signal(SIGTERM, SIG_DFL); /* Terminate */ 997 signal(SIGCHLD, SIG_DFL); 998 signal(SIGUSR1, SIG_DFL); 999 signal(SIGUSR2, SIG_DFL); 1000 signal(SIGABRT, SIG_DFL) [all...] |
/external/webkit/WebKit/qt/Api/ |
qgraphicswebview.cpp | 211 // If the page had no title, still make sure it gets the signal 340 This signal is emitted whenever the \a title of the main frame changes. 348 This signal is emitted when the \a url of the view changes. 356 This signal is emitted whenever the icon of the page is loaded or changes. 367 This signal is emitted when a new load of the page is started. 375 This signal is emitted when a load of the page is finished. 592 connect(mainFrame, SIGNAL(titleChanged(QString)), 593 this, SIGNAL(titleChanged(QString))); 594 connect(mainFrame, SIGNAL(iconChanged()), 595 this, SIGNAL(iconChanged())) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
DumpRenderTreeQt.cpp | 94 connect(this, SIGNAL(sslErrors(QNetworkReply*, const QList<QSslError>&)), 140 connect(this, SIGNAL(geometryChangeRequested(const QRect &)), 331 connect(m_controller, SIGNAL(showPage()), this, SLOT(showPage())); 332 connect(m_controller, SIGNAL(hidePage()), this, SLOT(hidePage())); 334 connect(m_controller, SIGNAL(done()), this, SLOT(dump())); 340 connect(m_page, SIGNAL(frameCreated(QWebFrame *)), 344 connect(m_page, SIGNAL(loadFinished(bool)), 348 connect(m_page, SIGNAL(loadStarted()), 350 connect(m_page, SIGNAL(windowCloseRequested()), this, SLOT(windowCloseRequested())); 352 connect(m_page->mainFrame(), SIGNAL(titleChanged(const QString&)) [all...] |
/external/dbus/bus/ |
dir-watch-kqueue.c | 29 #include <signal.h> 69 _dbus_verbose ("Sending SIGHUP signal on reception of a kevent\n"); 82 _dbus_verbose ("Sending SIGHUP signal since kqueue has been closed\n");
|
/external/dbus/tools/ |
dbus-send.1 | 52 Note that the interface is separated from a method or signal 72 Specify "method_call" or "signal" (defaults to "signal").
|
/external/libpcap/ |
atmuni31.h | 38 #define PPC 0x05 /* Point-to-point signal msg */ 39 #define BCC 0x02 /* Broadcast signal msg */ 42 #define METAC 0x01 /* Meta signal msg */
|
/external/opencore/codecs_v2/omx/omx_proxy/src/ |
pv_omx_interface_proxy.cpp | 497 //if the queue was empty, signal the AO. 524 //signal it. 580 // now it's safe to signal the thread create sema 581 iThreadCreatedSem.Signal(); 631 proxy->iThreadCreatedSem.Signal(); // signal to let the app thread run 637 proxy->iThreadCreatedSem.Signal(); // signal to let the app thread run 667 proxy->iThreadCreatedSem.Signal(); // signal to let the app thread run just in cas [all...] |
/external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/ |
SDL_systhread.c | 62 Signal(Father,SIGBREAKF_CTRL_F); 81 Signal(Father,SIGBREAKF_CTRL_F); 150 Signal((struct Task *)thread->handle,SIGBREAKF_CTRL_C);
|
/external/qemu/distrib/sdl-1.2.12/src/thread/epoc/ |
SDL_syssem.cpp | 77 sema.Signal(sema.Count()); 100 sema.Signal(); 191 sema.Signal();
|
/external/tcpdump/ |
atmuni31.h | 38 #define PPC 0x05 /* Point-to-point signal msg */ 39 #define BCC 0x02 /* Broadcast signal msg */ 42 #define METAC 0x01 /* Meta signal msg */
|
/development/simulator/wrapsim/ |
LaunchWrapper.c | 182 signal(SIGINT, SIG_IGN); 183 signal(SIGQUIT, SIG_IGN); 210 printf("LW: process killed by signal %d", WTERMSIG(status)); 219 signal(SIGINT, SIG_DFL); 220 signal(SIGQUIT, SIG_DFL); 227 signal(SIGTTOU, SIG_IGN);
|
/external/bluetooth/bluez/doc/ |
adapter-api.txt | 29 On success this will emit a PropertyChanged signal. 176 This signal indicates a changed value of the given 181 This signal will be send every time an inquiry result 192 This signal will be send when an inquiry session for 211 changed and a PropertyChanged signal will be emitted. 238 signal.
|
/external/bluetooth/glib/tests/gobject/ |
override.c | 1 /* GObject - GLib Type, Object, Parameter and Signal Library 357 const gchar *signal, 365 if (strcmp (signal, "baz")) 367 g_signal_emit_by_name (self, signal); 373 g_signal_emit_by_name (self, signal, self, GINT_TO_POINTER (23), &ret); 386 signal, g_type_name (type),
|
/frameworks/base/telephony/java/android/telephony/ |
PhoneStateListener.java | 31 * on the device, including service state, signal strength, message 60 * Listen for changes to the network signal strength (cellular). 141 * Listen for changes to the network signal strengths (cellular). 143 * Example: The status bar uses this to control the signal-strength 166 * Callback invoked when network signal strength changes. 243 * Callback invoked when network signal strengths changes.
|
/bionic/libc/string/ |
strerror_r.c | 8 #include <signal.h> 154 #define USIGPREFIX "Unknown signal: "
|