Searched defs:pid (Results 1 - 13 of 13) sorted by relevance

/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/persistence/
H A DRepoPersistenceManager.java148 * for the given <code>pid</code>.
150 * @param pid The identifier for the dictionary to test.
152 public boolean exists(String pid) { argument
153 logger.debug("Config exists call for {}", pid);
158 String id = pidToId(pid);
170 exists = tempStore.containsKey(pid);
172 logger.debug("Entry exists in temporary store for '{}'", pid);
175 logger.debug("Entry exists for '{}'", pid);
179 logger.debug("Entry does not exist for '{}'", pid);
185 * Returns the <code>Dictionary</code> for the given <code>pid</cod
196 load(String pid) argument
318 store(String pid, Dictionary properties) argument
408 delete(String pid) argument
451 pidToId(String pid) argument
[all...]
H A DConfigBootstrapHelper.java76 public static final String CONFIG_ALIAS = "config__factory-pid";
253 props.put("config.factory-pid","openidm");
272 // Prefix unqualified pid names with the default.
301 * @param alias the config factory pid alias
302 * @param pid the service pid
303 * @param factoryPid the service factory pid
306 public static String getId(String alias, String pid, String factoryPid) { argument
307 String unqualifiedPid = ConfigBootstrapHelper.unqualifyPid(pid);
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/metadata/impl/
H A DProviderTracker.java132 String pid = (String) reference.getProperty(Constants.SERVICE_PID);
135 provider.setCallback(new ProviderTrackerCallback(provider, pid));
137 addProvider(pid, provider, true);
141 String pid = (String) reference.getProperty(Constants.SERVICE_PID);
142 providers.remove(pid);
146 String pid = (String) reference.getProperty(Constants.SERVICE_PID);
147 modifiedProvider(pid, (MetaDataProvider) service, true);
150 public void modifiedProvider(String pid, MetaDataProvider provider, boolean notify) { argument
151 addProvider(pid, provider, notify);
/forgerock/opendj2/src/build-tools/windows/
H A Dwinlauncher.c30 // Generates the pid file name for a given instanceDir.
38 char* relativePath = "\\logs\\server.pid";
44 sprintf(pidFile, "%s\\logs\\server.pid", instanceDir);
82 // Deletes the pid file for a given instance directory.
119 // Returns the pid stored in the pid file for a given server
120 // instance directory. If the pid could not be retrieved
163 // Kills the process associated with the provided pid.
167 BOOL killProcess(int pid) argument
172 debug("killProcess(pid
235 createPidFile(const char* instanceDir, int pid) argument
[all...]
/forgerock/opendj-b2.6/src/build-tools/windows/
H A Dwinlauncher.c31 // Generates the pid file name for a given instanceDir.
39 char* relativePath = "\\logs\\server.pid";
45 sprintf(pidFile, "%s\\logs\\server.pid", instanceDir);
83 // Deletes the pid file for a given instance directory.
120 // Returns the pid stored in the pid file for a given server
121 // instance directory. If the pid could not be retrieved
164 // Kills the process associated with the provided pid.
168 BOOL killProcess(int pid) argument
173 debug("killProcess(pid
236 createPidFile(const char* instanceDir, int pid) argument
[all...]
/forgerock/opendj2.6.2/src/build-tools/windows/
H A Dwinlauncher.c31 // Generates the pid file name for a given instanceDir.
39 char* relativePath = "\\logs\\server.pid";
45 sprintf(pidFile, "%s\\logs\\server.pid", instanceDir);
83 // Deletes the pid file for a given instance directory.
120 // Returns the pid stored in the pid file for a given server
121 // instance directory. If the pid could not be retrieved
164 // Kills the process associated with the provided pid.
168 BOOL killProcess(int pid) argument
173 debug("killProcess(pid
236 createPidFile(const char* instanceDir, int pid) argument
[all...]
/forgerock/opendj2-hg/src/build-tools/windows/
H A Dwinlauncher.c30 // Generates the pid file name for a given instanceDir.
38 char* relativePath = "\\logs\\server.pid";
44 sprintf(pidFile, "%s\\logs\\server.pid", instanceDir);
82 // Deletes the pid file for a given instance directory.
119 // Returns the pid stored in the pid file for a given server
120 // instance directory. If the pid could not be retrieved
163 // Kills the process associated with the provided pid.
167 BOOL killProcess(int pid) argument
172 debug("killProcess(pid
235 createPidFile(const char* instanceDir, int pid) argument
[all...]
/forgerock/opendj2-jel-hg/src/build-tools/windows/
H A Dwinlauncher.c31 // Generates the pid file name for a given instanceDir.
39 char* relativePath = "\\logs\\server.pid";
45 sprintf(pidFile, "%s\\logs\\server.pid", instanceDir);
83 // Deletes the pid file for a given instance directory.
120 // Returns the pid stored in the pid file for a given server
121 // instance directory. If the pid could not be retrieved
164 // Kills the process associated with the provided pid.
168 BOOL killProcess(int pid) argument
173 debug("killProcess(pid
236 createPidFile(const char* instanceDir, int pid) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/build-tools/windows/
H A Dwinlauncher.c30 // Generates the pid file name for a given instanceDir.
38 char* relativePath = "\\logs\\server.pid";
44 sprintf(pidFile, "%s\\logs\\server.pid", instanceDir);
82 // Deletes the pid file for a given instance directory.
119 // Returns the pid stored in the pid file for a given server
120 // instance directory. If the pid could not be retrieved
163 // Kills the process associated with the provided pid.
167 BOOL killProcess(int pid) argument
172 debug("killProcess(pid
235 createPidFile(const char* instanceDir, int pid) argument
[all...]
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/installer/
H A DJSONConfigInstaller.java70 public final static String SERVICE_FACTORY_PID_ALIAS = "config.factory-pid";
135 logger.debug("ConfigurationEvent {}, pid: {}, factoryPid: {}, type: {}",
152 String pid = configurationEvent.getPid();
155 Configuration config = getConfigurationAdmin().getConfiguration(pid, factoryPid);
164 if (fileName == null && pid.startsWith(ConfigBootstrapHelper.DEFAULT_SERVICE_RDN_PREFIX)) {
165 String unqualified = pid.substring(ConfigBootstrapHelper.DEFAULT_SERVICE_RDN_PREFIX.length());
174 + " factory pid: {} assigned pid {}", factoryPid, pid);
222 String fileName = pidToFile.get(pid);
322 setConfig(Dictionary ht, final String[] pid, final File f) argument
431 getConfiguration(String fileName, String pid, String factoryPid, boolean addIfNew) argument
457 findExistingConfiguration(String fileName, String pid, String factoryPid) argument
[all...]
/forgerock/openidm-v4/openidm-config/src/test/java/org/forgerock/openidm/config/manage/
H A DConfigObjectServiceTest.java329 public Configuration getConfiguration(String pid, String location) throws IOException { argument
330 return configurations.containsKey(pid) ? configurations.get(pid) : null;
334 public Configuration getConfiguration(String pid) throws IOException { argument
335 return configurations.containsKey(pid) ? configurations.get(pid) : null;
356 String pid = "pid"; field in class:ConfigObjectServiceTest.MockConfiguration
364 return deleted ? null : pid;
384 return deleted ? null : pid;
[all...]
/forgerock/openidm-v4/openidm-config/src/main/java/org/forgerock/openidm/config/manage/
H A DConfigObjectService.java229 String pid = ConfigBootstrapHelper.unqualifyPid(conf.getPid());
234 : pid;
237 configEntry.put("pid", pid);
298 * @param resourcePath for multi-instance config, the factory pid to use
336 String qualifiedPid = ConfigBootstrapHelper.qualifyPid(parsedId.pid);
690 * a pid or for factory configurations the <factory pid>/<alias>
705 String pid = ConfigBootstrapHelper.qualifyPid(parsedId.pid);
920 public String pid; field in class:ConfigObjectService.ParsedId
[all...]
/forgerock/web-agents-v4/source/
H A Dlog.c814 int pid = getpid(); local
824 if (f->instance_id > 0 && f->owner == pid) {
830 if (log->owner == pid) {
844 if (f->owner == pid) {

Completed in 55 milliseconds