HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 901 - 925 of 4870) sorted by null

<<31323334353637383940>>

  /external/lldb/source/Core/
ConnectionMachPort.cpp 69 ConnectionStatus status = eConnectionStatusError; local
77 status = BootstrapCheckIn (s, error_ptr);
90 status = BootstrapLookup (s, error_ptr);
105 if (status == eConnectionStatusSuccess)
115 return status;
219 ConnectionStatus &status,
228 status = eConnectionStatusSuccess;
234 status = eConnectionStatusError;
239 ConnectionMachPort::Write (const void *src, size_t src_len, ConnectionStatus &status, Error *error_ptr)
251 status = eConnectionStatusSuccess
    [all...]
  /external/ltrace/
glob.c 183 int status = glob_to_regex(glob, &regex); local
184 if (status != 0)
185 return status;
187 status = regcomp(preg, regex, cflags);
189 return status;
199 int status = glob_to_regex(glob, &pattern); local
200 if (status != exp_status) {
201 fprintf(stderr, "translating %s, expected status %d, got %d\n",
202 glob, exp_status, status);
206 if (status == 0)
221 int status = globcomp(&preg, glob, 0); local
    [all...]
  /external/ltrace/sysdeps/linux-gnu/
events.c 140 int status; local
158 pid = waitpid(-1, &status, __WALL);
208 * 'R' and 'Z'. Calls to ptrace fail and /proc/pid/status may
234 if (WIFSIGNALED(status)) {
236 event.e_un.signum = WTERMSIG(status);
240 if (WIFEXITED(status)) {
242 event.e_un.ret_val = WEXITSTATUS(status);
243 debug(DEBUG_EVENT, "event: EXIT: pid=%d, status=%d", pid, event.e_un.ret_val);
254 switch (syscall_p(event.proc, status, &tmp)) {
280 if (WIFSTOPPED(status)) {
    [all...]
  /external/mdnsresponder/mDNSPosix/
Client.c 179 mStatus status; local
188 status = mDNS_Init(&mDNSStorage, &PlatformStorage,
192 if (status == mStatus_NoError) {
199 status = mDNS_StartBrowse(&mDNSStorage, &question, &type, &domain, mDNSInterface_Any, mDNSfalse, BrowseCallback, NULL);
205 if (status == mStatus_NoError) {
213 if (status == mStatus_NoError) {
219 fprintf(stderr, "%s: Finished with status %d, result %d\n", gProgramName, (int)status, result);
  /external/nanopb-c/tests/encode_unittests/
encode_unittests.c 50 int status = 0; local
333 if (status != 0)
336 return status;
  /external/openssl/crypto/conf/
conf_lib.c 176 int status; local
181 status = NCONF_get_number_e(NULL, group, name, &result);
187 status = NCONF_get_number_e(&ctmp, group, name, &result);
190 if (status == 0)
396 int status;
399 status = NCONF_get_number_e(conf, group, name, &ret);
400 if (status == 0)
  /external/pdfium/core/src/fxge/Microsoft SDK/include/
GdiPlusFont.h 163 inline Status
171 inline Status
203 inline Status
211 Status status = DllExports::GdipGetFamily(nativeFont, &(family->nativeFamily)); local
212 family->SetStatus(status);
214 return SetStatus(status);
270 IN Status status)
272 lastResult = status;
    [all...]
GdiPlusFontCollection.h 42 inline Status
61 Status status = SetStatus(DllExports::GdipGetFontCollectionFamilyList( local
67 if (status == Ok)
78 return status;
81 inline Status FontCollection::GetLastStatus () const
87 inline Status
88 FontCollection::SetStatus(IN Status status) const
90 lastResult = status;
    [all...]
  /external/pdfium/core/src/fxge/agg/agg23/
agg_conv_adaptor_vcgen.h 35 enum status { enum in class:agg::conv_adaptor_vcgen
78 status m_status;
  /external/qemu/android/emulation/
CpuAccelerator.cpp 63 char status[256]; member in struct:android::__anon12802::GlobalState
81 // |*status| will be set to a small status string explaining the
82 // status of KVM on success or failure.
83 bool ProbeKVM(String *status) {
86 status->assign(
92 status->assign(
99 status->assign("Could not open /dev/kvm :");
100 status->append(strerror(errno));
107 status->assign("Could not extract KVM version: ")
309 String status; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_cdrom.h 67 /** Given a status, returns true if there's a disk in the drive */
68 #define CD_INDRIVE(status) ((int)(status) > 0)
81 CDstatus status; /**< Current drive status */ member in struct:SDL_CD
135 * This function returns the current status of the given drive.
  /external/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_syssem.cpp 68 TInt status = CreateUnique(NewSema, &s, &initial_value); local
69 if(status != KErrNone)
159 TInt status = CreateUnique(NewThread, &thread, info);
161 if(status != KErrNone)
162 return status;
  /external/regex-re2/re2/testing/
parse_test.cc 205 RegexpStatus status; local
210 re[i] = Regexp::Parse(tests[i].regexp, f, &status);
212 << status.Text();
383 RegexpStatus status; local
388 Regexp* re = Regexp::Parse(tests[i].regexp, f, &status);
389 CHECK(re != NULL) << " " << tests[i].regexp << " " << status.Text();
403 Regexp* nre = Regexp::Parse(t, Regexp::MatchNL | Regexp::PerlX, &status);
404 CHECK(nre != NULL) << " reparse " << t << " " << status.Text();
419 RegexpStatus status; local
422 re = Regexp::Parse("test(?P<name", Regexp::LikePerl, &status);
    [all...]
  /external/skia/samplecode/
SampleFontCache.cpp 90 int status; local
92 status = pthread_create(&fMThreads[i], NULL, measure_proc, NULL);
93 SkASSERT(0 == status);
98 status = pthread_create(&fDThreads[i], NULL, draw_proc, &fBitmaps[i]);
99 SkASSERT(0 == status);
108 int status = pthread_join(fMThreads[i], &ret); local
109 SkASSERT(0 == status);
110 status = pthread_join(fDThreads[i], &ret);
111 SkASSERT(0 == status);
  /external/skia/src/ports/
SkOSFile_stdio.cpp 135 struct stat status; local
136 if (0 != stat(path, &status)) {
139 return SkToBool(status.st_mode & S_IFDIR);
  /external/srtp/crypto/cipher/
cipher.c 87 err_status_t status; local
110 status = cipher_type_alloc(ct, &c, test_case->key_length_octets);
111 if (status)
112 return status;
120 status = cipher_init(c, test_case->key, direction_encrypt);
121 if (status) {
123 return status;
139 status = cipher_set_iv(c, test_case->idx);
140 if (status) {
142 return status;
    [all...]
  /external/srtp/crypto/kernel/
crypto_kernel.c 96 err_status_t status; local
109 status = err_reporting_init("crypto");
110 if (status)
111 return status;
114 status = crypto_kernel_load_debug_module(&mod_crypto_kernel);
115 if (status)
116 return status;
117 status = crypto_kernel_load_debug_module(&mod_auth);
118 if (status)
119 return status;
177 err_status_t status; local
254 err_status_t status; local
303 err_status_t status; local
348 err_status_t status; local
    [all...]
  /external/srtp/crypto/math/
stat.c 205 err_status_t status; local
220 status = get_rand_bytes(buffer, RAND_SRC_BUF_OCTETS);
221 if (status) {
222 debug_print(mod_stat, "couldn't get rand bytes: %d",status);
223 return status;
  /external/srtp/test/
rdbx_driver.c 72 err_status_t status; local
104 status = test_replay_dbx(1 << 12, 128);
105 if (status) {
113 status = test_replay_dbx(1 << 12, 1024);
114 if (status) {
185 err_status_t status; local
189 status = rdbx_check(rdbx, delta);
190 if (status == err_status_ok) {
216 err_status_t status; local
219 status = rdbx_init(&rdbx, ws)
    [all...]
  /external/svox/pico/lib/
picokpdf.c 311 pico_status_t status; local
325 status = kpdfDURInitialize(this, common);
334 status = kpdfMULInitialize(this, common);
343 status = kpdfPHSInitialize(this, common);
351 if (status != PICO_OK) {
353 return picoos_emRaiseException(common->em, status, NULL, NULL);
  /external/valgrind/main/none/tests/
fdleak_cmsg.c 149 int pid, status; local
165 wait(&status);
  /external/vixl/tools/
test.py 95 # Get the output and return status of the test.
123 status, output = util.getstatusoutput(args.cctest + ' --list')
124 if status != 0: util.abort('Failed to list all tests')
179 status, output = util.getstatusoutput('find obj/coverage -name "*.gcda" -exec rm {} \;')
182 status = RunTests(manifest) variable
193 sys.exit(status)
  /external/wpa_supplicant_8/src/p2p/
p2p_dev_disc.c 110 static struct wpabuf * p2p_build_dev_disc_resp(u8 dialog_token, u8 status)
122 p2p_buf_add_status(buf, status);
138 const u8 *addr, int freq, u8 status)
142 resp = p2p_build_dev_disc_resp(dialog_token, status);
147 " (status %u freq %d)",
148 MAC2STR(addr), status, freq);
195 * status, so that we can reply to the request once the
219 u8 status; local
234 if (msg.status == NULL) {
246 status = *msg.status
    [all...]
  /external/wpa_supplicant_8/src/utils/
browser.c 66 int status = webkit_web_view_get_load_status(view); local
67 wpa_printf(MSG_DEBUG, "BROWSER:%s load-status=%d uri=%s",
68 __func__, status, webkit_web_view_get_uri(view));
183 g_signal_connect(G_OBJECT(view), "notify::load-status",
  /external/zlib/src/contrib/masmx64/
inffas8664.c 102 /*116 72 */ unsigned status; /* set when state chng*/ member in struct:inffast_ar
153 if (ar.status > 1) {
154 if (ar.status == 2)
156 else if (ar.status == 3)
162 else if ( ar.status == 1 ) {

Completed in 1132 milliseconds

<<31323334353637383940>>