HomeSort by relevance Sort by last modified time
    Searched defs:sig (Results 126 - 150 of 896) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/boringssl/src/crypto/dsa/
dsa_test.cc 224 uint8_t sig[256]; local
277 !DSA_sign(0, fips_digest, sizeof(fips_digest), sig, &siglen, dsa.get())) {
280 if (DSA_verify(0, fips_digest, sizeof(fips_digest), sig, siglen, dsa.get()) !=
289 static bool TestVerify(const uint8_t *sig, size_t sig_len, int expect) {
296 DSA_verify(0, fips_digest, sizeof(fips_digest), sig, sig_len, dsa.get());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
SignatureSpi.java 400 BigInteger[] sig = new BigInteger[2]; local
402 sig[0] = ASN1Integer.getInstance(s.getObjectAt(0)).getValue();
403 sig[1] = ASN1Integer.getInstance(s.getObjectAt(1)).getValue();
405 return sig;
458 // BigInteger[] sig = new BigInteger[2];
466 // sig[0] = new BigInteger(1, first);
467 // sig[1] = new BigInteger(1, second);
469 // return sig;
  /external/ipsec-tools/src/racoon/
session.c 104 static int set_signal __P((int sig, RETSIGTYPE (*func) __P((int))));
331 signal_handler(sig)
332 int sig;
337 sigreq[sig]++;
405 int sig; local
413 for (sig = 0; sig <= NSIG; sig++) {
414 if (sigreq[sig] == 0)
417 sigreq[sig]--
    [all...]
  /external/javassist/src/main/javassist/bytecode/
ClassFilePrinter.java 129 String sig = sa.getSignature(); local
130 out.println("signature: " + sig);
134 s = SignatureAttribute.toClassSignature(sig).toString();
136 s = SignatureAttribute.toMethodSignature(sig).toString();
138 s = SignatureAttribute.toFieldSignature(sig).toString();
  /external/libchrome/sandbox/linux/system_headers/
linux_signal.h 124 unsigned long sig[_NSIG_WORDS]; member in struct:LinuxSigSet
  /external/libedit/examples/
tc1.c 75 static void sig(int);
87 sig(int i) function
141 (void) signal(SIGINT, sig);
142 (void) signal(SIGQUIT, sig);
143 (void) signal(SIGHUP, sig);
144 (void) signal(SIGTERM, sig);
wtc1.c 31 sig(int i) function
122 (void)signal(SIGINT, sig);
123 (void)signal(SIGQUIT, sig);
124 (void)signal(SIGHUP, sig);
125 (void)signal(SIGTERM, sig);
  /external/libevent/
signal.c 113 static void __cdecl evsig_handler(int sig);
123 evsig_base_n_signals_added = base->sig.ev_n_signals_added;
124 evsig_base_fd = base->sig.ev_signal_pair[0];
154 ev_uint8_t sig = signals[i]; local
155 if (sig < NSIG)
156 ncaught[sig]++;
177 AF_UNIX, SOCK_STREAM, 0, base->sig.ev_signal_pair) == -1) {
188 evutil_make_socket_closeonexec(base->sig.ev_signal_pair[0]);
189 evutil_make_socket_closeonexec(base->sig.ev_signal_pair[1]);
190 base->sig.sh_old = NULL
218 struct evsig_info *sig = &base->sig; local
278 struct evsig_info *sig = &base->sig; local
325 struct evsig_info *sig = &base->sig; local
    [all...]
  /external/ltp/testcases/kernel/syscalls/kill/
kill12.c 62 static int sig; variable
92 maybe_run_child(&do_child, "dd", &temp, &sig);
106 for (sig = 1; sig < 14; sig++) {
117 if (self_exec(argv[0], "dd", temp, sig) < 0) {
125 //fprintf(temp, "Testing signal %d\n", sig);
130 kill(pid, sig); /* child should ignroe this sig */
160 it should be 0, except when sig = 9 *
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_atfork/
3-3.c 93 int sig; member in struct:__anon26509
126 ret = kill(process, thearg->sig);
139 void sighdl1(int sig)
150 void sighdl2(int sig)
262 arg1.sig = SIGUSR1;
263 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_broadcast/
4-2.c 61 int sig; member in struct:thestruct
95 ret = kill(process, thearg->sig);
106 static void sighdl1(int sig)
115 static void sighdl2(int sig)
229 arg1.sig = SIGUSR1;
230 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
4-2.c 92 int sig; member in struct:__anon26516
127 ret = kill(process, thearg->sig);
139 void sighdl1(int sig)
149 void sighdl2(int sig)
274 arg1.sig = SIGUSR1;
275 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_timedwait/
4-3.c 66 int sig; member in struct:__anon26525
101 ret = kill(process, thearg->sig);
113 void sighdl1(int sig)
115 (void) sig;
124 void sighdl2(int sig)
126 (void) sig;
286 arg1.sig = SIGUSR1;
287 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_wait/
4-1.c 94 int sig; member in struct:__anon26530
129 ret = kill(process, thearg->sig);
141 void sighdl1(int sig)
151 void sighdl2(int sig)
297 arg1.sig = SIGUSR1;
298 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
14-1.c 113 int sig; member in struct:__anon26532
143 ret = kill(process, thearg->sig);
155 void sighdl1(int sig)
165 void sighdl2(int sig)
328 arg1.sig = SIGUSR1;
329 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
4-3.c 77 int sig; member in struct:thestruct
122 ret = kill(process, thearg->sig);
129 static void sighdl1(int sig)
249 arg1.sig = SIGUSR1;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_join/
6-3.c 62 int sig; member in struct:thestruct
90 ret = kill(process, thearg->sig);
100 static void sighdl1(int sig)
109 static void sighdl2(int sig)
220 arg1.sig = SIGUSR1;
221 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_lock/
3-1.c 103 int sig; member in struct:__anon26536
123 if ((ret = pthread_kill(*(thearg->thr), thearg->sig))) {
133 void sighdl1(int sig)
142 void sighdl2(int sig)
277 UNRESOLVED(errno, "Could not wait for sig senders termination");
324 arg1.sig = SIGUSR1;
325 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_trylock/
4-3.c 125 int sig; member in struct:__anon26540
155 ret = kill(process, thearg->sig);
166 void sighdl1(int sig)
176 void sighdl2(int sig)
358 arg1.sig = SIGUSR1;
359 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_once/
6-1.c 90 int sig; member in struct:__anon26541
123 ret = kill(process, thearg->sig);
136 void sighdl1(int sig)
147 void sighdl2(int sig)
275 arg1.sig = SIGUSR1;
276 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setschedparam/
5-1.c 93 int sig; member in struct:__anon26542
126 ret = kill(process, thearg->sig);
139 void sighdl1(int sig)
150 void sighdl2(int sig)
260 arg1.sig = SIGUSR1;
261 arg2.sig = SIGUSR2;
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/
18-1.c 91 int sig; member in struct:__anon26543
124 ret = kill(process, thearg->sig);
137 void sighdl1(int sig)
148 void sighdl2(int sig)
282 arg1.sig = SIGUSR1;
283 arg2.sig = SIGUSR2;
  /external/ltp/testcases/realtime/func/pthread_kill_latency/
pthread_kill_latency.c 114 int i, ret, sig; local
151 sigwait(&set, &sig);
160 sigwait(&set, &sig);
  /external/lzma/C/
XzIn.c 14 Byte sig[XZ_STREAM_HEADER_SIZE]; local
15 RINOK(SeqInStream_Read2(inStream, sig, XZ_STREAM_HEADER_SIZE, SZ_ERROR_NO_ARCHIVE));
16 if (memcmp(sig, XZ_SIG, XZ_SIG_SIZE) != 0)
18 return Xz_ParseHeader(p, sig);
  /external/mesa3d/src/glsl/
ir_clone.cpp 287 const ir_function_signature *const sig = local
290 ir_function_signature *sig_copy = sig->clone(mem_ctx, ht);
295 (void *)const_cast<ir_function_signature *>(sig));
401 ir_function_signature *sig = local
403 if (sig != NULL)
404 ir->callee = sig;

Completed in 350 milliseconds

1 2 3 4 56 7 8 91011>>