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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
varargs_unreachable.c 6 #define VA_ARG_RDAR12322000(Marker, TYPE) ((sizeof (TYPE) < sizeof (UINTN_RDAR12322000)) ? (TYPE)(__builtin_va_arg (Marker, UINTN_RDAR12322000)) : (TYPE)(__builtin_va_arg (Marker, TYPE)))
11 int test_VA_ARG_RDAR12322000 (__builtin_va_list Marker)
13 return VA_ARG_RDAR12322000 (Marker, short); // no-warning
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/BootScriptSaveDxe/
ScriptSave.c 37 @param Marker The variable argument list to get the opcode
46 IN VA_LIST Marker
54 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH);
55 Address = VA_ARG (Marker, UINT64);
56 Count = VA_ARG (Marker, UINTN);
57 Buffer = VA_ARG (Marker, UINT8 *);
65 @param Marker The variable argument list to get the opcode
74 IN VA_LIST Marker
82 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH);
83 Address = VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiStdArg.h 24 VA_START (VA_LIST Marker, argument before the ...) - Init Marker for use.
25 VA_END (VA_LIST Marker) - Clear Marker
26 VA_ARG (VA_LIST Marker, var arg size) - Use Marker to get an argumnet from
37 VA_LIST Marker;
42 // Initialize the Marker
44 VA_START (Marker, NumberOfArgs);
49 Result += VA_ARG (Marker, UINTN);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/S3SaveStateDxe/
S3SaveState.c 28 @param Marker The variable argument list to get the opcode
37 IN VA_LIST Marker
45 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH);
46 Address = VA_ARG (Marker, UINT64);
47 Count = VA_ARG (Marker, UINTN);
48 Buffer = VA_ARG (Marker, UINT8 *);
55 @param Marker The variable argument list to get the opcode
64 IN VA_LIST Marker
72 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH);
73 Address = VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Acpi/SmmS3SaveState/
SmmS3SaveState.c 27 @param Marker The variable argument list to get the opcode
36 IN VA_LIST Marker
44 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH);
45 Address = VA_ARG (Marker, UINT64);
46 Count = VA_ARG (Marker, UINTN);
47 Buffer = VA_ARG (Marker, UINT8 *);
54 @param Marker The variable argument list to get the opcode
63 IN VA_LIST Marker
71 Width = VA_ARG (Marker, S3_BOOT_SCRIPT_LIB_WIDTH);
72 Address = VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.c 19 VA_LIST Marker;
22 VA_START (Marker, fmt);
23 NumberOfPrinted = (int)AsciiVSPrint (str, sizeOfBuffer, fmt, Marker);
24 VA_END (Marker);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
Marker.java 34 * marker data.
42 public interface Marker extends Serializable {
45 * This constant represents any marker, including a null marker.
50 * This constant represents any non-null marker.
55 * Get the name of this Marker.
57 * @return name of marker
62 * Add a reference to another Marker.
65 * a reference to another marker
69 public void add(Marker reference)
    [all...]
IMarkerFactory.java 28 * Implementations of this interface are used to manufacture {@link Marker}
40 * Manufacture a {@link Marker} instance by name. If the instance has been
45 * @param name the name of the marker to be created, null value is
48 * @return a Marker instance
50 Marker getMarker(String name);
53 * Checks if the marker with the name already exists. If name is null, then false
57 * @return true id the marker exists, false otherwise.
62 * Detach an existing marker.
64 * Note that after a marker is detached, there might still be "dangling" references
65 * to the detached marker
    [all...]
Logger.java 60 * <a href="MDC.html">MDC</a> as well as <a href="Marker.html">Markers</a>.</p>
151 * marker data is also taken into account.
153 * @param marker The marker data to take into consideration
159 public boolean isTraceEnabled(Marker marker);
162 * Log a message with the specific Marker at the TRACE level.
164 * @param marker the marker data specific to this log statement
168 public void trace(Marker marker, String msg)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Smm/SmmScriptLib/
SmmScriptLib.c 33 @param Marker The variable argument list to get the opcode
42 IN VA_LIST Marker
50 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
51 Address = VA_ARG (Marker, UINT64);
52 Count = VA_ARG (Marker, UINTN);
53 Buffer = VA_ARG (Marker, UINT8 *);
67 @param Marker The variable argument list to get the opcode
76 IN VA_LIST Marker
84 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
85 Address = VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
SwitchStack.c 59 VA_LIST Marker;
64 VA_START (Marker, NewStack);
66 InternalSwitchStack (EntryPoint, Context1, Context2, NewStack, Marker);
68 VA_END (Marker);
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
MarkerIgnoringBase.java 28 import org.slf4j.Marker;
32 * lacking Marker support. In this implementation, methods taking marker data
33 * simply invoke the corresponding method without the Marker argument, discarding
34 * any marker data passed as argument.
42 public boolean isTraceEnabled(Marker marker) {
46 public void trace(Marker marker, String msg) {
50 public void trace(Marker marker, String format, Object arg)
    [all...]
BasicMarker.java 32 import org.slf4j.Marker;
35 * A simple implementation of the {@link Marker} interface.
40 public class BasicMarker implements Marker {
45 private List<Marker> referenceList;
49 throw new IllegalArgumentException("A marker name cannot be null");
58 public synchronized void add(Marker reference) {
60 throw new IllegalArgumentException("A null value cannot be added to a Marker as reference.");
73 referenceList = new Vector<Marker>();
88 public synchronized Iterator<Marker> iterator() {
92 List<Marker> emptyList = Collections.emptyList()
    [all...]
BasicMarkerFactory.java 31 import org.slf4j.Marker;
44 private final ConcurrentMap<String, Marker> markerMap = new ConcurrentHashMap<String, Marker>();
48 * <code>BasicMarkerFactory</code> instances. <code>Marker</code>
59 * @param name the name of the marker to be created
60 * @return a Marker instance
62 public Marker getMarker(String name) {
64 throw new IllegalArgumentException("Marker name cannot be null");
67 Marker marker = markerMap.get(name) local
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/BootScriptSaveOnS3SaveStateThunk/
ScriptSave.c 80 @param Marker The variable argument list to get the opcode
89 IN VA_LIST Marker
97 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
98 Address = VA_ARG (Marker, UINT64);
99 Count = VA_ARG (Marker, UINTN);
100 Buffer = VA_ARG (Marker, UINT8 *);
114 @param Marker The variable argument list to get the opcode
123 IN VA_LIST Marker
131 Width = VA_ARG (Marker, EFI_BOOT_SCRIPT_WIDTH);
132 Address = VA_ARG (Marker, UINT64);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/
Print.c 94 VA_LIST Marker;
96 VA_START (Marker, Format);
97 Return = VSPrint (Buffer, BufferSize, Format, Marker);
98 VA_END (Marker);
109 IN VA_LIST Marker
128 Marker - Vararg list consumed by processing Format.
151 Marker
StdErr.c 90 VA_LIST Marker;
121 VA_START (Marker, Format);
122 Return = VSPrint (Buffer, sizeof (Buffer), UnicodeFormat, Marker);
123 VA_END (Marker);
165 VA_LIST Marker;
183 VA_START (Marker, Format);
184 Return = VSPrint (Buffer, sizeof (Buffer), UnicodeFormat, Marker);
185 VA_END (Marker);
227 VA_LIST Marker;
230 VA_START (Marker, Format);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/
StdErr.c 90 VA_LIST Marker;
121 VA_START (Marker, Format);
122 Return = VSPrint (Buffer, sizeof (Buffer), UnicodeFormat, Marker);
123 VA_END (Marker);
165 VA_LIST Marker;
183 VA_START (Marker, Format);
184 Return = VSPrint (Buffer, sizeof (Buffer), UnicodeFormat, Marker);
185 VA_END (Marker);
227 VA_LIST Marker;
230 VA_START (Marker, Format);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
SwitchStack.c 56 VA_LIST Marker;
66 VA_START (Marker, NewStack);
68 InternalSwitchStack (EntryPoint, Context1, Context2, NewStack, Marker);
70 VA_END (Marker);
  /device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/
PrintLib.c 35 Arguments are pulled from the variable argument list specified by Marker based on the
56 @param Marker VA_LIST marker for the variable argument list.
68 IN VA_LIST Marker
73 return BasePrintLibSPrintMarker ((CHAR8 *)StartOfBuffer, BufferSize >> 1, FORMAT_UNICODE | OUTPUT_UNICODE, (CHAR8 *)FormatString, Marker, NULL);
83 Arguments are pulled from the variable argument list specified by Marker based on the
104 @param Marker BASE_LIST marker for the variable argument list.
116 IN BASE_LIST Marker
121 return BasePrintLibSPrintMarker ((CHAR8 *)StartOfBuffer, BufferSize >> 1, FORMAT_UNICODE | OUTPUT_UNICODE, (CHAR8 *)FormatString, gNullVaList, Marker);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Graphics/Unicode/
PrintWidth.h 31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/GraphicsLite/Unicode/
PrintWidth.h 31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/Unicode/
PrintWidth.h 31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/Unicode/
PrintWidth.h 31 #define UvSPrint(Buffer, BufferSize, Format, Marker) VSPrint (Buffer, BufferSize, Format, Marker)
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/spi/
LocationAwareLogger.java 28 import org.slf4j.Marker;
51 * @param marker The marker to be used for this event, may be null.
58 public void log(Marker marker, String fqcn, int level, String message, Object[] argArray, Throwable t);

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>