Flutter Engine
The Flutter Engine
|
#include "bin/main_options.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "bin/dartdev_isolate.h"
#include "bin/error_exit.h"
#include "bin/file_system_watcher.h"
#include "bin/options.h"
#include "bin/platform.h"
#include "bin/utils.h"
#include "platform/syslog.h"
#include "bin/security_context.h"
#include "bin/socket.h"
#include "include/dart_api.h"
#include "platform/assert.h"
#include "platform/globals.h"
#include "platform/hashmap.h"
Go to the source code of this file.
Namespaces | |
namespace | dart |
namespace | dart::bin |
Macros | |
#define | OPTION_FIELD(variable) Options::variable##_ |
#define | STRING_OPTION_DEFINITION(name, variable) |
#define | BOOL_OPTION_DEFINITION(name, variable) |
#define | SHORT_BOOL_OPTION_DEFINITION(short_name, long_name, variable) |
#define | ENUM_OPTION_DEFINITION(name, type, variable) DEFINE_ENUM_OPTION(name, type, OPTION_FIELD(variable)) |
#define | CB_OPTION_DEFINITION(callback) |
#define | IS_DEBUG_OPTION(name, arg) |
#define | HANDLE_DARTDEV_VM_DEBUG_OPTIONS(V, arg) |
Functions | |
dart::bin::DEFINE_STRING_OPTION_CB (dfe, { Options::dfe() ->set_frontend_filename(value);}) | |
static void | dart::bin::hot_reload_test_mode_callback (CommandLineOptions *vm_options) |
dart::bin::DEFINE_BOOL_OPTION_CB (hot_reload_test_mode, hot_reload_test_mode_callback) | |
static void | dart::bin::hot_reload_rollback_test_mode_callback (CommandLineOptions *vm_options) |
dart::bin::DEFINE_BOOL_OPTION_CB (hot_reload_rollback_test_mode, hot_reload_rollback_test_mode_callback) | |
static bool | dart::bin::IsOption (const char *arg, const char *option) |
Variables | |
static const char *const | dart::bin::kSnapshotKindNames [] |
static const char *const | dart::bin::kVerbosityLevelNames [] |
#define BOOL_OPTION_DEFINITION | ( | name, | |
variable | |||
) |
Definition at line 55 of file main_options.cc.
#define CB_OPTION_DEFINITION | ( | callback | ) |
Definition at line 75 of file main_options.cc.
#define ENUM_OPTION_DEFINITION | ( | name, | |
type, | |||
variable | |||
) | DEFINE_ENUM_OPTION(name, type, OPTION_FIELD(variable)) |
Definition at line 70 of file main_options.cc.
#define HANDLE_DARTDEV_VM_DEBUG_OPTIONS | ( | V, | |
arg | |||
) |
#define IS_DEBUG_OPTION | ( | name, | |
arg | |||
) |
#define OPTION_FIELD | ( | variable | ) | Options::variable##_ |
Definition at line 47 of file main_options.cc.
#define SHORT_BOOL_OPTION_DEFINITION | ( | short_name, | |
long_name, | |||
variable | |||
) |
Definition at line 64 of file main_options.cc.
#define STRING_OPTION_DEFINITION | ( | name, | |
variable | |||
) |
Definition at line 49 of file main_options.cc.