Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SEH (0.12 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #ifndef GTEST_HAS_SEH
    // The user didn't tell us, so we need to figure it out.
    
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // These two compilers are known to support SEH.
    #  define GTEST_HAS_SEH 1
    # else
    // Assume no SEH.
    #  define GTEST_HAS_SEH 0
    # endif
    
    #endif  // GTEST_HAS_SEH
    
    #ifdef _MSC_VER
    
    # if GTEST_LINKED_AS_SHARED_LIBRARY
    #  define GTEST_API_ __declspec(dllimport)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #ifndef GTEST_HAS_SEH
    // The user didn't tell us, so we need to figure it out.
    
    # if defined(_MSC_VER) || defined(__BORLANDC__)
    // These two compilers are known to support SEH.
    #  define GTEST_HAS_SEH 1
    # else
    // Assume no SEH.
    #  define GTEST_HAS_SEH 0
    # endif
    
    #endif  // GTEST_HAS_SEH
    
    #ifdef _MSC_VER
    
    # if GTEST_LINKED_AS_SHARED_LIBRARY
    #  define GTEST_API_ __declspec(dllimport)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/runtime/asm_amd64.s

    	ADJSP	$32
    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    	// thrown in the cgo call. Exceptions that reach this function will be
    	// handled by runtime.sehtramp thanks to the SEH metadata added
    	// by the compiler.
    	// Note that runtime.sehtramp can't be attached directly to asmcgocall
    	// because its initial stack pointer can be outside the system stack bounds,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    		a := &auxs[i]
    		switch a.Type() {
    		case goobj.AuxWasmImport:
    			return l.resolve(r, a.Sym()), true
    		}
    	}
    
    	return 0, false
    }
    
    // SEHUnwindSym returns the auxiliary SEH unwind symbol associated with
    // a given function symbol.
    func (l *Loader) SEHUnwindSym(fnSymIdx Sym) Sym {
    	if l.SymType(fnSymIdx) != sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top