Searched defs:status (Results 151 - 175 of 1610) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java25 * CommandHandler for the STAT (Status) command. By default, return empty status information,
27 * pathname is specified. You can customize the returned status information by setting
28 * the <code>status</code> property.
44 private String status = ""; field in class:StatCommandHandler
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
62 sendReply(session, status);
67 * Set the contents of the status to send back as the reply text for this command
69 * @param status - the status
71 public void setStatus(String status) { argument
[all...]
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java25 * CommandHandler for the STAT (Status) command. By default, return empty status information,
27 * pathname is specified. You can customize the returned status information by setting
28 * the <code>status</code> property.
46 private String status = ""; field in class:StatCommandHandler
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
68 sendReply(session, status);
73 * Set the contents of the status to send back as the reply text for this command
74 * @param status - the status
76 public void setStatus(String status) { argument
[all...]
/external/nanopb-c/examples/using_double_on_avr/
H A Dtest_conversions.c20 int status = 0; local
39 status = 1;
47 status = 1;
51 return status;
/external/nanopb-c/examples/using_union_messages/
H A Ddecode.c48 bool status; local
52 status = pb_decode(&substream, fields, dest_struct);
54 return status;
65 bool status = false; local
70 status = decode_unionmessage_contents(&stream, MsgType1_fields, &msg);
76 status = decode_unionmessage_contents(&stream, MsgType2_fields, &msg);
82 status = decode_unionmessage_contents(&stream, MsgType3_fields, &msg);
86 if (!status)
H A Dencode.c47 bool status = false; local
53 status = encode_unionmessage(&stream, MsgType1_fields, &msg);
59 status = encode_unionmessage(&stream, MsgType2_fields, &msg);
65 status = encode_unionmessage(&stream, MsgType3_fields, &msg);
73 if (!status)
/external/nanopb-c/tests/alltypes_pointer/
H A Ddecode_alltypes_pointer.c10 status = false; \
17 bool status = true; local
144 return status;
/external/nanopb-c/tests/basic_stream/
H A Ddecode_stream.c61 bool status; local
63 status = (fread(buf, 1, count, file) == count);
68 return status;
/external/opencv/cxcore/src/
H A Dcxalloc.cpp127 CVStatus status = p_cvFree( ptr, p_cvAllocUserData ); local
128 if( status < 0 )
129 CV_ERROR( status, "Deallocation error" );
/external/pdfium/fpdfsdk/src/
H A Dfpdf_progressive.cpp53 CPDF_ProgressiveRenderer::RenderStatus status = CPDF_ProgressiveRenderer::Failed; local
54 status = pContext->m_pRenderer->GetStatus();
55 return status;
81 CPDF_ProgressiveRenderer::RenderStatus status = CPDF_ProgressiveRenderer::Failed; local
82 status = pContext->m_pRenderer->GetStatus();
83 return status;
/external/sfntly/cpp/src/test/
H A Dtest_utils.cc48 UErrorCode status = U_ZERO_ERROR; local
53 NULL, TRUE, &status);
54 if (!U_SUCCESS(status)) {
56 uchar, u_errorName(status));
75 UErrorCode status = U_ZERO_ERROR;
76 UConverter* conv = ucnv_open(charset_name, &status);
77 // if (!U_SUCCESS(status))
/external/srtp/crypto/hash/
H A Dauth.c89 err_status_t status; local
111 status = auth_type_alloc(at, &a, test_case->key_length_octets,
113 if (status)
114 return status;
117 status = auth_init(a, test_case->key);
118 if (status) {
120 return status;
125 status = auth_compute(a, test_case->data,
127 if (status) {
129 return status;
[all...]
/external/srtp/crypto/rng/
H A Dprng.c55 err_status_t status; local
64 status = random_source((uint8_t *)&tmp_key, 16);
65 if (status)
66 return status;
72 status = x917_prng.rand((uint8_t *)&x917_prng.state, 16);
73 if (status)
74 return status;
84 err_status_t status; local
92 status = x917_prng_init(x917_prng.rand);
93 if (status)
[all...]
/external/srtp/crypto/test/
H A Drand_gen.c75 err_status_t status; local
81 status = crypto_kernel_init();
82 if (status) {
94 status = crypto_kernel_set_debug_module(optarg, 1);
95 if (status) {
114 status = crypto_kernel_list_debug_modules();
115 if (status) {
124 status = crypto_get_random(buffer, num_octets);
125 if (status) {
132 status
[all...]
/external/srtp/test/
H A Droc_driver.c65 err_status_t status; local
72 status = roc_test(1 << 18);
73 if (status) {
75 exit(status);
/external/strace/tests/
H A Dscm_rights.c61 int status; local
62 assert(waitpid(pid, &status, 0) == pid);
63 assert(status == 0);
H A Dunix-pair-send-recv.c44 int status; local
45 assert(waitpid(pid, &status, 0) == pid);
46 assert(status == 0);
/external/v8/src/base/
H A Dlogging.cc37 int status; local
39 char* demangled = abi::__cxa_demangle(mangled, NULL, &length, &status);
/external/v8/test/mjsunit/harmony/
H A Darray-of.js85 var status = "pass"; variable
86 Object.defineProperty(Array.prototype, "0", {set: function(v) {status = "FAIL 1"}});
88 assertEquals(status, "pass");
90 Object.defineProperty(Bag.prototype, "0", {set: function(v) {status = "FAIL 2"}});
92 assertEquals(status, "pass");
/external/valgrind/coregrind/
H A Dm_debugger.c46 #define WIFSTOPPED(status) (((status) & 0xff) == 0x7f)
47 #define WSTOPSIG(status) (((status) & 0xff00) >> 8)
478 Int status; local
481 if ((res = VG_(waitpid)(pid, &status, 0)) == pid &&
482 WIFSTOPPED(status) && WSTOPSIG(status) == VKI_SIGSTOP &&
550 VG_(waitpid)(pid, &status, 0);
/external/valgrind/drd/tests/
H A Dbug-235681.c15 int status; variable
28 while (!status) {
30 fprintf(stderr, "run_fn(): status==0\n");
37 fprintf(stderr, "run_fn(): status==1\n");
61 status = 0;
76 fprintf(stderr, "main(): status=1\n");
77 status = 1;
/external/valgrind/memcheck/tests/linux/
H A Dgetregset.c50 int status; local
58 pid = wait(&status);
/external/valgrind/none/tests/
H A Dasync-sigs.c30 int status; local
53 ret = waitpid(killer, &status, 0);
61 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
62 fprintf(stderr, "kill %d failed status=%s %d\n", killer,
63 WIFEXITED(status) ? "exit" : "signal",
64 WIFEXITED(status) ? WEXITSTATUS(status) : WTERMSIG(status));
72 int status; local
[all...]
H A Dexec-sigmask.c13 int status; local
29 ret = waitpid(pid, &status, 0);
35 if (status != 0) {
H A Dfdleak_ipv4.c74 int pid, status; local
85 wait(&status);
H A Dprocess_vm_readv_writev.c11 static int status = EXIT_SUCCESS; variable
38 status = EXIT_FAILURE;
43 status = EXIT_FAILURE;
74 status = EXIT_FAILURE;
79 status = EXIT_FAILURE;
93 return status;

Completed in 395 milliseconds

1234567891011>>