Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Public Member Functions | List of all members
flutter::IsolateNameServer Class Reference

#include <isolate_name_server.h>

Public Member Functions

 IsolateNameServer ()
 
 ~IsolateNameServer ()
 
Dart_Port LookupIsolatePortByName (const std::string &name)
 
bool RegisterIsolatePortWithName (Dart_Port port, const std::string &name)
 
bool RemoveIsolateNameMapping (const std::string &name)
 

Detailed Description

Definition at line 17 of file isolate_name_server.h.

Constructor & Destructor Documentation

◆ IsolateNameServer()

flutter::IsolateNameServer::IsolateNameServer ( )

Definition at line 9 of file isolate_name_server.cc.

9{}

◆ ~IsolateNameServer()

flutter::IsolateNameServer::~IsolateNameServer ( )
default

Member Function Documentation

◆ LookupIsolatePortByName()

Dart_Port flutter::IsolateNameServer::LookupIsolatePortByName ( const std::string &  name)

Definition at line 13 of file isolate_name_server.cc.

13 {
14 std::scoped_lock lock(mutex_);
15 return LookupIsolatePortByNameUnprotected(name);
16}
DEF_SWITCHES_START aot vmservice shared library name
Definition switches.h:32

◆ RegisterIsolatePortWithName()

bool flutter::IsolateNameServer::RegisterIsolatePortWithName ( Dart_Port  port,
const std::string &  name 
)

Definition at line 27 of file isolate_name_server.cc.

28 {
29 std::scoped_lock lock(mutex_);
30 if (LookupIsolatePortByNameUnprotected(name) != ILLEGAL_PORT) {
31 // Name is already registered.
32 return false;
33 }
34 port_mapping_[name] = port;
35 return true;
36}
#define ILLEGAL_PORT
Definition dart_api.h:1530
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service port
Definition switches.h:87

◆ RemoveIsolateNameMapping()

bool flutter::IsolateNameServer::RemoveIsolateNameMapping ( const std::string &  name)

Definition at line 38 of file isolate_name_server.cc.

38 {
39 std::scoped_lock lock(mutex_);
40 auto port_iterator = port_mapping_.find(name);
41 if (port_iterator == port_mapping_.end()) {
42 return false;
43 }
44 port_mapping_.erase(port_iterator);
45 return true;
46}

The documentation for this class was generated from the following files: