Home
last modified time | relevance | path

Searched refs:status (Results 3676 - 3700 of 6217) sorted by relevance

1...<<141142143144145146147148149150>>...249

/third_party/backends/backend/
H A Dcanon_lide70-common.c44 /* Assign status and verify a good return code */
45 #define CHK(A) {if ((status = A) != SANE_STATUS_GOOD) {\
103 SANE_Status status; in cp2155_set() local
122 status = sanei_usb_write_bulk (fd, cmd_buffer, &count); in cp2155_set()
124 if (status != SANE_STATUS_GOOD) in cp2155_set()
130 return status; in cp2155_set()
137 SANE_Status status; in cp2155_get() local
146 status = sanei_usb_write_bulk (fd, cmd_buffer, &count); in cp2155_get()
148 if (status != SANE_STATUS_GOOD) in cp2155_get()
151 return status; in cp2155_get()
171 SANE_Status status; cp2155_read() local
2753 SANE_Status status = SANE_STATUS_GOOD; preread() local
2906 SANE_Status status = SANE_STATUS_GOOD; do_scan() local
3019 SANE_Status status = SANE_STATUS_GOOD; scan() local
3243 SANE_Status status; CANON_start_scan() local
3295 SANE_Status status; CANON_read() local
[all...]
H A Dplustek-usbio.c76 SANE_Status status; \
77 status = func; \
78 if (status != SANE_STATUS_GOOD) { \
335 "successful, status=%d\n", value ); in usbio_ResetLM983x()
/third_party/libinput/test/
H A Dtest-touchpad-tap.c3673 enum libinput_config_status status; in START_TEST() local
3680 status = libinput_device_config_tap_set_button_map(dev->libinput_device, in START_TEST()
3682 ck_assert_int_eq(status, LIBINPUT_CONFIG_STATUS_UNSUPPORTED); in START_TEST()
3683 status = libinput_device_config_tap_set_button_map(dev->libinput_device, in START_TEST()
3685 ck_assert_int_eq(status, LIBINPUT_CONFIG_STATUS_UNSUPPORTED); in START_TEST()
3694 enum libinput_config_status status; in START_TEST() local
3697 status = libinput_device_config_tap_set_button_map(device, map); in START_TEST()
3698 ck_assert_int_eq(status, LIBINPUT_CONFIG_STATUS_SUCCESS); in START_TEST()
3703 status = libinput_device_config_tap_set_button_map(device, map); in START_TEST()
3704 ck_assert_int_eq(status, LIBINPUT_CONFIG_STATUS_SUCCES in START_TEST()
3723 enum libinput_config_status status; START_TEST() local
3834 enum libinput_config_status status; START_TEST() local
4126 enum libinput_config_status status; START_TEST() local
4155 enum libinput_config_status status; START_TEST() local
[all...]
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Dwl_cfg80211.h486 /* driver status */
586 /* fw downloading status */
841 unsigned long status; member
1168 spinlock_t net_list_sync; /* to protect scan status (and others if needed) */
1170 spinlock_t cfgdrv_lock; /* to protect scan status (and others if needed) */
1258 bool sched_scan_running; /* scheduled scan req status */
1623 wl_get_status_all(struct bcm_cfg80211 *cfg, s32 status) in wl_get_status_all() argument
1635 test_bit(status, &_net_info->sme_state)) in wl_get_status_all()
1642 wl_set_status_all(struct bcm_cfg80211 *cfg, s32 status, u32 op) in wl_set_status_all() argument
1653 break; /* set all status i in wl_set_status_all()
1674 wl_set_status_by_netdev(struct bcm_cfg80211 *cfg, s32 status, struct net_device *ndev, u32 op) wl_set_status_by_netdev() argument
1753 wl_get_status_by_netdev(struct bcm_cfg80211 *cfg, s32 status, struct net_device *ndev) wl_get_status_by_netdev() argument
2207 wl_escan_check_sync_id(s32 status, u16 result_id, u16 wl_id) wl_escan_check_sync_id() argument
2218 wl_escan_print_sync_id(s32 status, u16 result_id, u16 wl_id) wl_escan_print_sync_id() argument
[all...]
/third_party/curl/lib/vtls/
H A Dsectransp.c1044 OSStatus status = errSecItemNotFound; in CopyIdentityWithLabelOldSchool() local
1060 status = SecKeychainSearchCreateFromAttributes(NULL, in CopyIdentityWithLabelOldSchool()
1064 if(status == noErr) { in CopyIdentityWithLabelOldSchool()
1065 status = SecKeychainSearchCopyNext(search, in CopyIdentityWithLabelOldSchool()
1067 if(status == noErr && cert) { in CopyIdentityWithLabelOldSchool()
1069 status = SecIdentityCreateWithCertificate(NULL, cert, out_c_a_k); in CopyIdentityWithLabelOldSchool()
1076 return status; in CopyIdentityWithLabelOldSchool()
1083 OSStatus status = errSecItemNotFound; in CopyIdentityWithLabel() local
1121 status = SecItemCopyMatching(query_dict, (CFTypeRef *) &keys_list); in CopyIdentityWithLabel()
1125 if(status in CopyIdentityWithLabel()
1183 OSStatus status = errSecItemNotFound; CopyIdentityFromPKCS12File() local
[all...]
/third_party/protobuf/ruby/ext/google/protobuf_c/
H A Dupb.c2258 void upb_status_clear(upb_status *status) { in upb_status_clear() argument
2259 if (!status) return; in upb_status_clear()
2260 status->ok = true; in upb_status_clear()
2261 status->msg[0] = '\0'; in upb_status_clear()
2264 bool upb_ok(const upb_status *status) { return status->ok; } in upb_ok() argument
2266 const char *upb_status_errmsg(const upb_status *status) { return status->msg; } in upb_status_errmsg() argument
2268 void upb_status_seterrmsg(upb_status *status, const char *msg) { in upb_status_seterrmsg() argument
2269 if (!status) retur in upb_status_seterrmsg()
2275 upb_status_seterrf(upb_status *status, const char *fmt, ...) upb_status_seterrf() argument
2282 upb_status_vseterrf(upb_status *status, const char *fmt, va_list args) upb_status_vseterrf() argument
3207 upb_status_setoom(upb_status *status) upb_status_setoom() argument
4070 upb_status *status; /* Record errors here. */ global() member
4162 resolvename(const upb_strtable *t, const upb_fielddef *f, const char *base, upb_strview sym, upb_deftype_t type, upb_status *status, const void **def) resolvename() argument
4902 upb_symtab_addtotabs(upb_symtab *s, symtab_addctx *ctx, upb_status *status) upb_symtab_addtotabs() argument
5021 _upb_symtab_addfile( upb_symtab *s, const google_protobuf_FileDescriptorProto *file_proto, const upb_msglayout **layouts, upb_status *status) _upb_symtab_addfile() argument
5048 upb_symtab_addfile( upb_symtab *s, const google_protobuf_FileDescriptorProto *file_proto, upb_status *status) upb_symtab_addfile() argument
5063 upb_status status; _upb_symtab_loaddefinit() local
5565 checkstart(upb_handlers *h, const upb_fielddef *f, upb_handlertype_t type, upb_status *status) checkstart() argument
7899 upb_pbdecoder_create(upb_arena *a, const upb_pbdecodermethod *m, upb_sink sink, upb_status *status) upb_pbdecoder_create() argument
8342 endmsg(void *c, const void *hd, upb_status *status) endmsg() argument
9203 upb_status *status; global() member
12291 upb_json_parser_create(upb_arena *arena, const upb_json_parsermethod *method, const upb_symtab* symtab, upb_sink output, upb_status *status, bool ignore_json_unknown) upb_json_parser_create() argument
[all...]
/device/soc/rockchip/common/vendor/drivers/video/rockchip/mpp/hack/
H A Dmpp_hack_px30.c46 u32 status; in mpp_iommu_is_paged() local
49 status = readl(iommu->bases[i] + RK_MMU_STATUS); in mpp_iommu_is_paged()
50 active &= !!(status & RK_MMU_STATUS_PAGING_ENABLED); in mpp_iommu_is_paged()
81 /* restore dte and status */ in mpp_iommu_enable()
/device/soc/rockchip/common/sdk_linux/drivers/nvmem/
H A Drockchip-otp.c102 u32 status = 0; in rockchip_otp_wait_status() local
105 ret = readl_poll_timeout_atomic(otp->base + OTPC_INT_STATUS, status, (status & flag), 1, OTPC_TIMEOUT); in rockchip_otp_wait_status()
110 /* clean int status */ in rockchip_otp_wait_status()
/device/soc/rockchip/rk3399/hardware/mpp/include/
H A Dmpp_thread.h253 void set_status(MppThreadStatus status, MppThreadSignal id = THREAD_WORK);
274 MppThreadStatus status = mStatus[id];
279 // check the status is not changed then restore status
281 mStatus[id] = status;
/device/soc/rockchip/rk3568/hardware/mpp/include/
H A Dmpp_thread.h255 void set_status(MppThreadStatus status, MppThreadSignal id = THREAD_WORK);
276 MppThreadStatus status = mStatus[id];
281 // check the status is not changed then restore status
283 mStatus[id] = status;
/device/soc/rockchip/rk3588/hardware/mpp/include/
H A Dmpp_thread.h243 void set_status(MppThreadStatus status, MppThreadSignal id = THREAD_WORK);
261 MppThreadStatus status = mStatus[id];
266 // check the status is not changed then restore status
268 mStatus[id] = status;
/device/soc/rockchip/common/hardware/mpp/include/
H A Dmpp_thread.h253 void set_status(MppThreadStatus status, MppThreadSignal id = THREAD_WORK);
274 MppThreadStatus status = mStatus[id];
279 // check the status is not changed then restore status
281 mStatus[id] = status;
/device/soc/rockchip/rk3588/kernel/drivers/video/rockchip/mpp/hack/
H A Dmpp_hack_px30.c46 u32 status; in mpp_iommu_is_paged() local
50 status = readl(iommu->bases[i] + RK_MMU_STATUS); in mpp_iommu_is_paged()
51 active &= !!(status & RK_MMU_STATUS_PAGING_ENABLED); in mpp_iommu_is_paged()
83 /* restore dte and status */ in mpp_iommu_enable()
/third_party/ffmpeg/libavfilter/
H A Daf_channelsplit.c187 int status, ret; in activate() local
213 if (ff_inlink_acknowledge_status(inlink, &status, &pts)) { in activate()
217 ff_outlink_set_status(ctx->outputs[i], status, pts); in activate()
/third_party/fsverity-utils/scripts/
H A Drun-tests.sh98 if git status --short | grep -q '^??'; then
99 git status
100 fail "Build produced untracked files (check 'git status'). Missing gitignore entry?"
276 scan-build --status-bugs make CFLAGS="-O2 -Werror" all test_programs
/third_party/icu/icu4c/source/common/
H A Dputilimp.h575 U_CAPI void * U_EXPORT2 uprv_dl_open(const char *libName, UErrorCode *status);
581 U_CAPI void U_EXPORT2 uprv_dl_close( void *lib, UErrorCode *status);
587 U_CAPI UVoidFunction* U_EXPORT2 uprv_dlsym_func( void *lib, const char *symbolName, UErrorCode *status);
594 /* U_CAPI void * U_EXPORT2 uprv_dlsym_data( void *lib, const char *symbolName, UErrorCode *status); */
/third_party/icu/icu4c/source/i18n/
H A Dnumber_capi.cpp74 const UFormattedNumber* uresult, UErrorCode& status) { in validateUFormattedNumberToDecimalQuantity()
75 auto* result = UFormattedNumberApiHelper::validate(uresult, status); in validateUFormattedNumberToDecimalQuantity()
76 if (U_FAILURE(status)) { in validateUFormattedNumberToDecimalQuantity()
73 validateUFormattedNumberToDecimalQuantity( const UFormattedNumber* uresult, UErrorCode& status) validateUFormattedNumberToDecimalQuantity() argument
/third_party/libuv/test/
H A Dbenchmark-udp-pummel.c72 static void send_cb(uv_udp_send_t* req, int status) { in send_cb() argument
77 if (status != 0) { in send_cb()
78 ASSERT_EQ(status, UV_ECANCELED); in send_cb()
H A Dtest-thread.c56 int status,
79 int status, in getaddrinfo_cb()
83 ASSERT_OK(status); in getaddrinfo_cb()
78 getaddrinfo_cb(uv_getaddrinfo_t* handle, int status, struct addrinfo* res) getaddrinfo_cb() argument
/third_party/lzma/C/Util/Lzma/
H A DLzmaUtil.c126 ELzmaStatus status; in Decode2() local
134 inBuf + inPos, &inProcessed, finishMode, &status); in Decode2()
150 if (thereIsSize || status != LZMA_STATUS_FINISHED_WITH_MARK) in Decode2()
/third_party/mbedtls/programs/ssl/
H A Ddtls_server.c111 psa_status_t status = psa_crypto_init(); in main() local
112 if (status != PSA_SUCCESS) { in main()
114 (int) status); in main()
H A Dssl_fork_server.c97 psa_status_t status = psa_crypto_init(); in main() local
98 if (status != PSA_SUCCESS) { in main()
100 (int) status); in main()
H A Dssl_server.c96 psa_status_t status = psa_crypto_init(); in main() local
97 if (status != PSA_SUCCESS) { in main()
99 (int) status); in main()
/third_party/mesa3d/.gitlab-ci/tests/
H A Dtest_lava_job_submitter.py202 assert job_result == job.status
231 assert job.status == "pass"
294 assert job.status == expectation
/third_party/node/test/js-native-api/test_constructor/
H A Dtest_constructor.c11 napi_status status; in TestDefineClass() local
26 status = napi_define_class(NULL, in TestDefineClass()
40 status); in TestDefineClass()

Completed in 37 milliseconds

1...<<141142143144145146147148149150>>...249