Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for exitStatus (0.15 sec)

  1. src/syscall/syscall_linux.go

    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    		return -1
    	}
    	return Signal(w & mask)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	ProcessFreeFiberShadowStackAllocation
    	ProcessAltSystemCallInformation
    	ProcessDynamicEHContinuationTargets
    	ProcessDynamicEnforcedCetCompatibleRanges
    )
    
    type PROCESS_BASIC_INFORMATION struct {
    	ExitStatus                   NTStatus
    	PebBaseAddress               *PEB
    	AffinityMask                 uintptr
    	BasePriority                 int32
    	UniqueProcessId              uintptr
    	InheritedFromUniqueProcessId uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/syscall/syscall_windows.go

    	KernelTime   Filetime
    	UserTime     Filetime
    }
    
    type WaitStatus struct {
    	ExitCode uint32
    }
    
    func (w WaitStatus) Exited() bool { return true }
    
    func (w WaitStatus) ExitStatus() int { return int(w.ExitCode) }
    
    func (w WaitStatus) Signal() Signal { return -1 }
    
    func (w WaitStatus) CoreDump() bool { return false }
    
    func (w WaitStatus) Stopped() bool { return false }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() syscall.Signal {
    	if !w.Signaled() {
    		return -1
    	}
    	return syscall.Signal(w & mask)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	KernelTime   Filetime
    	UserTime     Filetime
    }
    
    type WaitStatus struct {
    	ExitCode uint32
    }
    
    func (w WaitStatus) Exited() bool { return true }
    
    func (w WaitStatus) ExitStatus() int { return int(w.ExitCode) }
    
    func (w WaitStatus) Signal() Signal { return -1 }
    
    func (w WaitStatus) CoreDump() bool { return false }
    
    func (w WaitStatus) Stopped() bool { return false }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    func (w WaitStatus) Continued() bool { return w == 0xFFFF }
    
    func (w WaitStatus) CoreDump() bool { return w.Signaled() && w&core != 0 }
    
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int(w>>shift) & 0xFF
    }
    
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    		return -1
    	}
    	return Signal(w & mask)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // Tests that an exit code describes a normal exit with a given exit code.
    class GTEST_API_ ExitedWithCode {
     public:
      explicit ExitedWithCode(int exit_code);
      bool operator()(int exit_status) const;
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ExitedWithCode& other);
    
      const int exit_code_;
    };
    
    # if !GTEST_OS_WINDOWS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

                          const char* file, int line, DeathTest** test);
    };
    
    // Returns true if exit_status describes a process that was terminated
    // by a signal, or exited normally with a nonzero exit code.
    GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
    
    // Traps C++ exceptions escaping statement and reports them as test
    // failures. Note that trapping SEH exceptions is not implemented here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // Tests that an exit code describes a normal exit with a given exit code.
    class GTEST_API_ ExitedWithCode {
     public:
      explicit ExitedWithCode(int exit_code);
      bool operator()(int exit_status) const;
     private:
      // No implementation - assignment is unsupported.
      void operator=(const ExitedWithCode& other);
    
      const int exit_code_;
    };
    
    # if !GTEST_OS_WINDOWS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

                          const char* file, int line, DeathTest** test);
    };
    
    // Returns true if exit_status describes a process that was terminated
    // by a signal, or exited normally with a nonzero exit code.
    GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
    
    // Traps C++ exceptions escaping statement and reports them as test
    // failures. Note that trapping SEH exceptions is not implemented here.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top