HomeSort by relevance Sort by last modified time
    Searched refs:EntryPoint (Results 1 - 25 of 263) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/guava/guava-gwt/src/com/google/common/
ForceGuavaCompilationEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class ForceGuavaCompilationEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/
GuavaTestsEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class GuavaTestsEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/base/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/cache/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/collect/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/escape/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/html/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/io/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/math/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/net/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/primitives/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/testing/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/xml/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/collect/testing/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /external/guava/guava-gwt/test/com/google/common/util/concurrent/
TestModuleEntryPoint.java 19 import com.google.gwt.core.client.EntryPoint;
26 public class TestModuleEntryPoint implements EntryPoint {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
X86DisablePaging32.c 31 is disabled, control is transferred to the function specified by EntryPoint
34 may be NULL. The function EntryPoint must never return.
37 If EntryPoint is NULL, then ASSERT().
48 @param EntryPoint A pointer to function to call with the new stack after
50 @param Context1 A pointer to the context to pass into the EntryPoint
52 @param Context2 A pointer to the context to pass into the EntryPoint
55 @param NewStack A pointer to the new stack to use for the EntryPoint
62 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
68 ASSERT (EntryPoint != NULL);
70 InternalX86DisablePaging32 (EntryPoint, Context1, Context2, NewStack);
    [all...]
X86DisablePaging64.c 31 disabled, control is transferred to the function specified by EntryPoint
34 may be 0. The function EntryPoint must never return.
37 If EntryPoint is 0, then ASSERT().
40 @param Cs The 16-bit selector to load in the CS before EntryPoint
43 @param EntryPoint The 64-bit virtual address of the function to call with
46 the EntryPoint function as the first parameter after
49 the EntryPoint function as the second parameter after
52 the EntryPoint function after paging is disabled.
59 IN UINT32 EntryPoint,
65 ASSERT (EntryPoint != 0);
    [all...]
X86EnablePaging32.c 32 transferred to the function specified by EntryPoint using the new stack
35 EntryPoint must never return.
38 If EntryPoint is NULL, then ASSERT().
52 @param EntryPoint A pointer to function to call with the new stack after
54 @param Context1 A pointer to the context to pass into the EntryPoint
56 @param Context2 A pointer to the context to pass into the EntryPoint
58 @param NewStack A pointer to the new stack to use for the EntryPoint
65 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
71 ASSERT (EntryPoint != NULL);
73 InternalX86EnablePaging32 (EntryPoint, Context1, Context2, NewStack);
    [all...]
X86EnablePaging64.c 33 EntryPoint using the new stack specified by NewStack and passing in the
35 optional and may be 0. The function EntryPoint must never return.
39 If EntryPoint is 0, then ASSERT().
42 @param Cs The 16-bit selector to load in the CS before EntryPoint
45 @param EntryPoint The 64-bit virtual address of the function to call with
48 the EntryPoint function as the first parameter after
51 the EntryPoint function as the second parameter after
54 the EntryPoint function after paging is enabled.
61 IN UINT64 EntryPoint,
67 ASSERT (EntryPoint != 0);
    [all...]
SwitchStack.c 28 Transfers control to the function specified by EntryPoint using the new stack
31 be NULL. The function EntryPoint must never return. This function
37 If EntryPoint is NULL, then ASSERT().
40 @param EntryPoint A pointer to function to call with the new stack.
41 @param Context1 A pointer to the context to pass into the EntryPoint
43 @param Context2 A pointer to the context to pass into the EntryPoint
45 @param NewStack A pointer to the new stack to use for the EntryPoint
52 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
61 ASSERT (EntryPoint != NULL);
66 InternalSwitchStack (EntryPoint, Context1, Context2, NewStack, Marker);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
X86DisablePaging32.c 26 is disabled, control is transferred to the function specified by EntryPoint
29 may be NULL. The function EntryPoint must never return.
32 If EntryPoint is NULL, then ASSERT().
43 @param EntryPoint A pointer to function to call with the new stack after
45 @param Context1 A pointer to the context to pass into the EntryPoint
47 @param Context2 A pointer to the context to pass into the EntryPoint
50 @param NewStack A pointer to the new stack to use for the EntryPoint
57 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
63 ASSERT (EntryPoint != NULL);
65 InternalX86DisablePaging32 (EntryPoint, Context1, Context2, NewStack);
    [all...]
X86DisablePaging64.c 26 disabled, control is transferred to the function specified by EntryPoint
29 may be 0. The function EntryPoint must never return.
32 If EntryPoint is 0, then ASSERT().
35 @param Cs The 16-bit selector to load in the CS before EntryPoint
38 @param EntryPoint The 64-bit virtual address of the function to call with
41 the EntryPoint function as the first parameter after
44 the EntryPoint function as the second parameter after
47 the EntryPoint function after paging is disabled.
54 IN UINT32 EntryPoint,
60 ASSERT (EntryPoint != 0);
    [all...]
X86EnablePaging32.c 27 transferred to the function specified by EntryPoint using the new stack
30 EntryPoint must never return.
33 If EntryPoint is NULL, then ASSERT().
47 @param EntryPoint A pointer to function to call with the new stack after
49 @param Context1 A pointer to the context to pass into the EntryPoint
51 @param Context2 A pointer to the context to pass into the EntryPoint
53 @param NewStack A pointer to the new stack to use for the EntryPoint
60 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
66 ASSERT (EntryPoint != NULL);
68 InternalX86EnablePaging32 (EntryPoint, Context1, Context2, NewStack);
    [all...]
X86EnablePaging64.c 28 EntryPoint using the new stack specified by NewStack and passing in the
30 optional and may be 0. The function EntryPoint must never return.
34 If EntryPoint is 0, then ASSERT().
37 @param Cs The 16-bit selector to load in the CS before EntryPoint
40 @param EntryPoint The 64-bit virtual address of the function to call with
43 the EntryPoint function as the first parameter after
46 the EntryPoint function as the second parameter after
49 the EntryPoint function after paging is enabled.
56 IN UINT64 EntryPoint,
62 ASSERT (EntryPoint != 0);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ebc/
SwitchStack.c 27 Transfers control to the function specified by EntryPoint using the new stack
30 be NULL. The function EntryPoint must never return.
35 If EntryPoint is NULL, then ASSERT().
38 @param EntryPoint A pointer to function to call with the new stack.
39 @param Context1 A pointer to the context to pass into the EntryPoint
41 @param Context2 A pointer to the context to pass into the EntryPoint
43 @param NewStack A pointer to the new stack to use for the EntryPoint
51 IN SWITCH_STACK_ENTRY_POINT EntryPoint,
70 EntryPoint (Context1, Context2);

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011