/src/sys/arch/mac68k/nubus/ |
if_sm_nubus.c | 106 int i, success; local in function:sm_nubus_attach 123 success = 0; 132 success = 1; 140 success = 1; 144 if (!success) {
|
if_sn_nubus.c | 105 int i, success, offset; local in function:sn_nubus_attach 123 success = 0; 147 success = 1; 170 success = 1; 194 success = 1; 217 success = 1; 230 success = 0; 234 if (!success) {
|
if_ae_nubus.c | 131 int i, success; local in function:ae_nubus_attach 152 success = 0; 189 success = 1; 257 success = 1; 293 success = 1; 321 success = 1; 348 success = 1; 354 if (!success) {
|
/src/sys/external/bsd/sljit/dist/regex_src/ |
regexMain.c | 114 int success = 0, fail = 0; local in function:run_tests 205 printf("SUCCESS\n"); 207 success++; 216 printf(COLOR_RED "%d" COLOR_DEFAULT " (" COLOR_RED "%d%%" COLOR_DEFAULT ") tests are failed ", fail, fail * 100 / (success + fail));
|
/src/usr.sbin/makefs/cd9660/ |
cd9660_write.c | 60 * @returns int 1 on success, 0 on failure 162 * @returns int 1 on success, 0 on failure 231 * @returns int 0 on failure, 1 on success 257 * @returns int 0 on failure, 1 on success 392 size_t success; local in function:cd9660_write_filedata 399 success = fwrite(buf, diskStructure->sectorSize * numsecs, 1, fd); 404 if (success == 1) 405 success = diskStructure->sectorSize * numsecs; 406 return success;
|
/src/sys/arch/arm/broadcom/ |
bcm2835_vcaudioreg.h | 129 int32_t success; // Success value member in struct:__anon5827fd4f0908 136 int32_t count; // Success value
|
/src/sys/dev/i2c/ |
nxt2k.c | 350 int success; local in function:nxt2k4_init 493 success = 1; 494 return success;
|
/src/sys/net/npf/ |
npf_mbuf.c | 200 bool success; local in function:nbuf_ensure_contig 211 success = m_ensure_contig(&m, target); 216 return success ? nbuf->nb_nptr : NULL; 232 if (!success) { 302 * => Returns 0 on success or error number on failure. 332 * => Returns 0 on success or error number on failure. 344 * => Returns 0 on success or error number on failure.
|
/src/sys/external/bsd/compiler_rt/dist/lib/interception/tests/ |
interception_win_test.cc | 330 bool success = override(identity_address, local in function:__interception::TestIdentityFunctionPatching 333 EXPECT_TRUE(success); 339 if (!success || !real_identity_address) 426 bool success = override(identity_address, local in function:__interception::TestIdentityFunctionMultiplePatching 429 EXPECT_TRUE(success); 433 success = override(identity_address, 436 EXPECT_FALSE(success);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_symbolizer_libcdep.cc | 459 bool success = ReadFromFile(input_fd_, buffer + read_len, local in function:__sanitizer::SymbolizerProcess::ReadFromSymbolizer 463 if (!success || just_read == 0) { 484 bool success = WriteToFile(output_fd_, buffer, length, &write_len); local in function:__sanitizer::SymbolizerProcess::WriteToSymbolizer 485 if (!success || write_len != length) {
|
sanitizer_win.cc | 693 bool success = ::ReadFile(fd, buff, buff_size, &num_read_long, nullptr); local in function:__sanitizer::ReadFromFile 694 if (!success && error_p) 698 return success;
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/modules/hdcp/ |
amdgpu_hdcp_ddc.c | 154 bool success = true; local in function:read 161 success = hdcp->config.ddc.funcs.read_dpcd(hdcp->config.ddc.handle, 166 if (!success) 173 success = hdcp->config.ddc.funcs.read_i2c( 181 return success ? MOD_HDCP_STATUS_SUCCESS : MOD_HDCP_STATUS_DDC_FAILURE; 213 bool success = true; local in function:write 220 success = hdcp->config.ddc.funcs.write_dpcd( 226 if (!success) 235 success = hdcp->config.ddc.funcs.write_i2c( 242 return success ? MOD_HDCP_STATUS_SUCCESS : MOD_HDCP_STATUS_DDC_FAILURE [all...] |
/src/sys/external/bsd/drm2/dist/include/drm/ttm/ |
ttm_bo_driver.h | 66 * Returns 0 on success, negative error code on failure. 687 bool success; local in function:__ttm_bo_reserve 691 success = dma_resv_trylock(bo->base.resv); 692 return success ? 0 : -EBUSY;
|
/src/usr.sbin/rpc.lockd/ |
lock_proc.c | 233 /* Success - update the cache entry */ 270 int success; local in function:transmit_result 276 success = clnt_call(cli, (rpcproc_t)opcode, xdr_nlm_res, 281 success, clnt_sperrno(success)); 298 int success; local in function:transmit4_result 304 success = clnt_call(cli, (rpcproc_t)opcode, xdr_nlm4_res, 309 success, clnt_sperrno(success)); 398 int success; local in function:nlm_test_msg_1_svc 843 int success; local in function:nlm4_test_msg_4_svc [all...] |
lockd_lock.c | 616 int success; local in function:send_granted 649 success = clnt_call(cli, NLM4_GRANTED_MSG, 652 success = clnt_call(cli, NLM4_GRANTED, 673 success = clnt_call(cli, NLM_GRANTED_MSG, 676 success = clnt_call(cli, NLM_GRANTED, 683 success, clnt_sperrno(success));
|
/src/sys/dev/ic/ |
igpio.c | 228 int success = 0; local in function:igpio_attach 365 success = 1; 367 if (!success)
|
mpt_netbsd.h | 237 uint32_t success; /* success after timeout */ member in struct:mpt_softc
|
/src/sbin/swapctl/ |
swapctl.c | 717 int success = 0; /* set to 1 after a successful operation */ local in function:do_fstab 827 success = 1; 839 success = 1; 863 else if (success)
|
/src/common/lib/libppath/ |
ppath.c | 631 bool copy, success; local in function:ppath_copyset_object_helper 655 success = (v == NULL) 663 success = (v == NULL) 670 if (!success) {
|
/src/lib/libresolv/ |
res_mkupdate.c | 457 int sig_type, success, dateerror; local in function:res_nmkupdate 464 sig_type = sym_ston(__p_type_syms, buf2, &success); 465 if (!success || sig_type == ns_t_any) 582 int success, nxt_type; local in function:res_nmkupdate 601 &success); 602 if (!success || !ns_t_rr_p(nxt_type))
|
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
lsan_common.cc | 526 bool success; member in struct:__lsan::CheckForLeaksParam 558 CHECK(!param->success); 565 param->success = true; 573 param.success = false; 580 if (!param.success) {
|
/src/lib/libc/resolv/ |
res_debug.c | 569 sym_ston(const struct res_sym *syms, const char *name, int *success) { 572 if (success) 573 *success = 1; 577 if (success) 578 *success = 0; 583 sym_ntos(const struct res_sym *syms, int number, int *success) { 588 if (success) 589 *success = 1; 595 if (success) 596 *success = 0 622 int success; local in function:p_type 658 int success; local in function:p_class 1200 int success; local in function:res_nametoclass 1223 int success; local in function:res_nametotype [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
i915_gem_context.c | 372 bool success = false; local in function:__reset_engine 379 success = intel_engine_reset(engine, NULL) == 0; 384 return success;
|
/src/usr.bin/telnet/ |
commands.c | 357 int success = 0; 421 success += (*s->handler)(argv[i+1]); 428 return (count == success); 356 int success = 0; local in function:sendcmd
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/core/ |
amdgpu_dc_link_dp.c | 1867 bool success; local in function:dp_verify_link_cap 1880 success = false; 1933 success = true; 1940 success = true; 1945 if (success) { 1959 } while (!success && decide_fallback_link_setting( 1965 if (!success) { 1977 return success; 1986 bool success = false; local in function:dp_verify_link_cap_with_retries 2002 success = true [all...] |