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

1 2 3

  /external/ImageMagick/MagickCore/
client.c 121 client_name[MagickPathExtent] = "Magick";
124 (void) CopyMagickString(client_name,name,MagickPathExtent);
125 return(client_name);
117 client_name[MagickPathExtent] = "Magick"; local
xwindow.c 8981 *client_name; local
9527 *client_name, local
    [all...]
  /external/libmojo/mojo/edk/test/
mojo_test_base.h 37 ClientController(const std::string& client_name,
65 ClientController& StartClient(const std::string& client_name);
68 void StartClientWithHandler(const std::string& client_name,
71 ClientController& c = StartClient(client_name);
161 // Launches a new child process running the test client |client_name| connected
164 #define RUN_CHILD_ON_PIPE(client_name, pipe_name) \
166 #client_name, \
193 #define DEFINE_TEST_CLIENT_WITH_PIPE(client_name, test_base, pipe_name) \
194 class client_name##_MainFixture : public test_base { \
200 client_name##TestChildMain,
    [all...]
mojo_test_base.cc 45 const std::string& client_name) {
47 client_name, this, process_error_callback_));
52 const std::string& client_name,
66 pipe_ = helper_.StartChild(client_name);
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/message/
pairingrequestmessage.h 37 // @param client_name the client name
39 const std::string& client_name);
45 std::string client_name() const;
pairingrequestmessage.cc 32 const std::string& client_name)
35 client_name_(client_name) {
42 std::string PairingRequestMessage::client_name() const { function in class:polo::pairing::message::PairingRequestMessage
53 << ", client_name=" << client_name_ << "]";
  /external/ImageMagick/utilities/
magick.c 71 *client_name;
101 client_name[MagickPathExtent],
123 GetPathComponent(argv[0],TailPath,client_name);
126 offset=LocaleNCompare(MagickCommands[i].client_name,client_name,
136 offset=LocaleCompare(MagickCommands[i].client_name,argv[1]);
69 *client_name; member in struct:_CommandInfo
99 client_name[MagickPathExtent], local
  /device/google/marlin/thermal-engine/
thermal_client.h 73 int thermal_client_register_callback(char *client_name, int (*callback)(int , void *, void *), void *data);
74 int thermal_client_request(char *client_name, int req_data);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.x 76 bp_machine_name_t client_name;
82 bp_machine_name_t client_name;
bootparam_prot.h 53 bp_machine_name_t client_name; member in struct:bp_whoami_res
60 bp_machine_name_t client_name; member in struct:bp_getfile_arg
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.x 76 bp_machine_name_t client_name;
82 bp_machine_name_t client_name;
bootparam_prot.h 53 bp_machine_name_t client_name; member in struct:bp_whoami_res
60 bp_machine_name_t client_name; member in struct:bp_getfile_arg
  /external/google-tv-pairing-protocol/cpp/src/polo/pairing/
clientpairingsession.h 35 // @param client_name the client name
40 const std::string& client_name);
clientpairingsession.cc 30 const std::string &client_name)
33 client_name_(client_name) {
serverpairingsession.cc 50 set_peer_name(message.client_name());
  /external/google-tv-pairing-protocol/cpp/tests/polo/pairing/
clientpairingsessiontest.cc 52 MATCHER_P2(PairingRequestEq, service_name, client_name, "") {
54 && arg.client_name() == client_name;
  /external/libmojo/mojo/edk/system/
node_channel.h 50 const ports::NodeName& client_name,
53 const ports::NodeName& client_name,
127 void AddBrokerClient(const ports::NodeName& client_name,
129 void BrokerClientAdded(const ports::NodeName& client_name,
node_channel.cc 72 ports::NodeName client_name; member in struct:mojo::edk::__anon23498::AddBrokerClientData
88 ports::NodeName client_name; member in struct:mojo::edk::__anon23498::BrokerClientAddedData
285 void NodeChannel::AddBrokerClient(const ports::NodeName& client_name,
296 data->client_name = client_name;
304 void NodeChannel::BrokerClientAdded(const ports::NodeName& client_name,
314 data->client_name = client_name;
543 delegate_->OnAddBrokerClient(remote_node_name_, data->client_name,
550 delegate_->OnAddBrokerClient(remote_node_name_, data->client_name,
    [all...]
node_controller.h 180 const ports::NodeName& client_name,
183 const ports::NodeName& client_name,
node_controller.cc 879 const ports::NodeName& client_name,
892 if (GetPeerChannel(client_name)) {
915 AddPeer(client_name, client, true /* start_channel */);
917 DVLOG(1) << "Broker " << name_ << " accepting client " << client_name
920 sender->BrokerClientAdded(client_name, broker_channel.PassClientHandle());
924 const ports::NodeName& client_name,
926 scoped_refptr<NodeChannel> client = GetPeerChannel(client_name);
928 DLOG(ERROR) << "BrokerClientAdded for unknown child " << client_name;
938 DVLOG(1) << "Child " << client_name << " accepted by broker " << from_node;
    [all...]
  /external/toolchain-utils/binary_search_tool/
binary_search_perforce.py 18 def _GetP4ClientSpec(client_name, p4_paths):
24 p4_string += " -a \"" + (' //' + client_name + '/').join(p4_path) + "\""
29 def GetP4Command(client_name, p4_port, p4_paths, checkoutdir, p4_snapshot=''):
50 command += " && echo \"P4CLIENT=" + client_name + "\" >> .p4config"
51 command += (' && g4 client ' + _GetP4ClientSpec(client_name, p4_paths))
267 self.client_name = 'binary-searcher-$HOSTNAME-$USER'
273 command = GetP4Command(self.client_name, self.p4_port, self.p4_paths, 1,
302 command += " && echo \"P4CLIENT=" + self.client_name + "\" >> .p4config"
305 command += '; g4 changes -c %s' % self.client_name
317 command += '; g4 client -d %s' % self.client_name
    [all...]
  /external/ImageMagick/coders/
dps.c 100 *client_name;
183 client_name=GetClientName();
184 resource_database=XGetResourceDatabase(display,client_name);
185 XGetResourceInfo(image_info,resource_database,client_name,&resource_info);
98 *client_name; local
  /external/webrtc/webrtc/examples/peerconnection/client/
peer_connection_client.cc 94 const std::string& client_name) {
96 ASSERT(!client_name.empty());
105 if (server.empty() || client_name.empty()) {
115 client_name_ = client_name;
peer_connection_client.h 61 const std::string& client_name);
  /external/ipsec-tools/src/racoon/
gssapi.c 352 gss_name_t client_name; local
363 gps->gss_cred, rtoken, GSS_C_NO_CHANNEL_BINDINGS, &client_name,
371 maj_stat = gss_display_name(&min_stat, client_name, &name_token, NULL);
374 maj_stat = gss_release_name(&min_stat, &client_name);
377 "release client_name\n");
380 maj_stat = gss_release_name(&min_stat, &client_name);
382 gssapi_error(min_stat, LOCATION, "release client_name\n");

Completed in 848 milliseconds

1 2 3