HomeSort by relevance Sort by last modified time
    Searched full:wstatus (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /hardware/nxp/nfc/halimpl/dnld/
phNxpNciHal_Dnld.cc 242 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
259 wStatus = phDnldNfc_Reset((pphDnldNfc_RspCb_t)&phNxpNciHal_fw_dnld_reset_cb,
262 if (wStatus != NFCSTATUS_PENDING) {
264 wStatus = NFCSTATUS_FAILED;
271 wStatus = NFCSTATUS_FAILED;
277 wStatus = NFCSTATUS_FAILED;
281 wStatus = NFCSTATUS_SUCCESS;
286 return wStatus;
361 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
389 wStatus = phDnldNfc_Force
    [all...]
phDnldNfc.cc 54 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
58 wStatus = PHNFCSTVAL(CID_NFC_DNLD, NFCSTATUS_INVALID_PARAMETER);
62 wStatus = PHNFCSTVAL(CID_NFC_DNLD, NFCSTATUS_BUSY);
73 wStatus = phDnldNfc_CmdHandler(gpphDnldContext, phDnldNfc_EventReset);
75 if (NFCSTATUS_PENDING == wStatus) {
83 return wStatus;
109 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
113 wStatus = PHNFCSTVAL(CID_NFC_DNLD, NFCSTATUS_INVALID_PARAMETER);
117 wStatus = PHNFCSTVAL(CID_NFC_DNLD, NFCSTATUS_BUSY);
129 wStatus = phDnldNfc_CmdHandler(gpphDnldContext, phDnldNfc_EventGetVer)
    [all...]
phDnldNfc_Internal.cc 192 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
199 wStatus = PHNFCSTVAL(CID_NFC_DNLD, NFCSTATUS_INVALID_PARAMETER);
204 wStatus = phTmlNfc_UpdateReadCompleteCallback (
206 if (NFCSTATUS_SUCCESS != wStatus) {
216 wStatus = NFCSTATUS_INSUFFICIENT_RESOURCES;
217 pDlCtxt->wCmdSendStatus = wStatus;
229 wStatus = phDnldNfc_BuildFramePkt(pDlCtxt);
231 if (NFCSTATUS_SUCCESS == wStatus) {
234 wStatus = phTmlNfc_Write(
240 pDlCtxt->wCmdSendStatus = wStatus;
    [all...]
phDnldNfc.h 31 * wStatus - Status of the transaction
34 typedef void (*pphDnldNfc_RspCb_t)(void* pContext, NFCSTATUS wStatus,
  /hardware/nxp/nfc/halimpl/tml/
phTmlNfc.cc 278 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
281 wStatus = phOsalNfc_Timer_Start(gpphTmlNfc_Context->dwTimerId,
285 return wStatus;
300 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
317 wStatus = NFCSTATUS_SUCCESS;
324 wStatus = NFCSTATUS_SUCCESS;
374 tTransactionInfo.wStatus = wStatus;
415 NFCSTATUS wStatus = NFCSTATUS_SUCCESS;
437 wStatus = NFCSTATUS_SUCCESS
    [all...]
phTmlNfc.h 61 * The value of field wStatus can be interpreted as:
74 NFCSTATUS wStatus; /* Status of the Transaction Completion*/
  /packages/apps/Nfc/nci/jni/extns/pn54x/src/mifare/
phNxpExtns_MifareStd.cpp 70 NFCSTATUS wStatus);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xwinsock.h 45 #define Status wStatus
Xwindows.h 56 #define Status wStatus
  /external/libese/third_party/NXPNFC_P61_JCOP_Kit/src/
JcopOsDownload.cpp 188 tJBL_STATUS wstatus = STATUS_FAILED; local
196 wstatus = STATUS_FAILED;
202 wstatus = JcopOsDwnld::JcopOs_update_seq_handler();
203 if(wstatus == STATUS_FAILED)
209 ALOGD("%s: exit; status = 0x%x", fn, wstatus);
210 return wstatus;
Ala.cpp 126 INT32 wStatus = 0;
131 wStatus = FSCANF_BYTE(fAID_MEM,"%2x",&ArrayOfAIDs[2][aidLen++]);
132 if(wStatus == 0)
655 INT32 wStatus= 0;
668 wStatus = fprintf(fAID_MEM, "%02x",
670 if(wStatus != 2)
677 if(wStatus == 2)
    [all...]
  /external/strace/tests/
wait4.c 89 do_wait4(pid_t pid, int *wstatus, int options, struct rusage *ru)
95 pid_t rc = wait4(pid, wstatus, options, ru);
  /external/strace/tests-m32/
wait4.c 89 do_wait4(pid_t pid, int *wstatus, int options, struct rusage *ru)
95 pid_t rc = wait4(pid, wstatus, options, ru);
  /external/strace/tests-mx32/
wait4.c 89 do_wait4(pid_t pid, int *wstatus, int options, struct rusage *ru)
95 pid_t rc = wait4(pid, wstatus, options, ru);
  /hardware/google/av/codec2/vndk/bufferpool/vts/
multi.cpp 114 int wstatus; variable
115 wait(&wstatus); variable
  /prebuilts/go/darwin-x86/src/syscall/
exec_unix.go 137 var wstatus WaitStatus
215 _, err1 := Wait4(pid, &wstatus, 0, nil)
217 _, err1 = Wait4(pid, &wstatus, 0, nil)
syscall_bsd.go 125 //sys wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)
127 func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
130 if wstatus != nil {
131 *wstatus = WaitStatus(status)
syscall_linux.go 250 //sys wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)
252 func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
255 if wstatus != nil {
256 *wstatus = WaitStatus(status)
  /prebuilts/go/linux-x86/src/syscall/
exec_unix.go 137 var wstatus WaitStatus
215 _, err1 := Wait4(pid, &wstatus, 0, nil)
217 _, err1 = Wait4(pid, &wstatus, 0, nil)
syscall_bsd.go 125 //sys wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error)
127 func Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
130 if wstatus != nil {
131 *wstatus = WaitStatus(status)
  /hardware/nxp/nfc/halimpl/self-test/
phNxpNciHal_SelfTest.cc 847 if (pInfo->wStatus == NFCSTATUS_SUCCESS) {
848 NXPLOG_NCIHAL_D("write successful status = 0x%x", pInfo->wStatus);
850 NXPLOG_NCIHAL_E("write error status = 0x%x", pInfo->wStatus);
853 p_cb_data->status = pInfo->wStatus;
890 if (pInfo->wStatus == NFCSTATUS_SUCCESS) {
891 NXPLOG_NCIHAL_D("hal_read_cb successful status = 0x%x", pInfo->wStatus);
894 NXPLOG_NCIHAL_E("hal_read_cb error status = 0x%x", pInfo->wStatus);
898 p_cb_data->status = pInfo->wStatus;
    [all...]
  /external/libusb/libusb/os/
wince_usb.c 678 WORD wStatus = 0;
686 ctrlHeader.wLength = sizeof(wStatus);
689 &ctrlHeader, &wStatus, sizeof(wStatus), &written, NULL)) {
690 if (written == sizeof(wStatus) &&
691 (wStatus & STATUS_HALT_FLAG) == 0) {
  /hardware/nxp/secure_element/ls_client/src/
LsLib.cpp 249 int32_t wStatus = 0;
260 wStatus = fprintf(fAidMem, "%02x", ArrayOfAIDs[selectCnt][cnt++]);
261 if (wStatus != 2) {
267 if (wStatus == 2) status = LSCSTATUS_SUCCESS;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ddeml.h 46 UINT wStatus;
  /prebuilts/go/darwin-x86/src/runtime/
syscall_solaris.go 255 func syscall_wait4(pid uintptr, wstatus *uint32, options uintptr, rusage unsafe.Pointer) (wpid int, err uintptr) {

Completed in 1981 milliseconds

1 2 3 4