Home
last modified time | relevance | path

Searched refs:cfgLoc (Results 1 – 4 of 4) sorted by relevance

/dports/security/gopass/gopass-1.13.0/internal/config/
H A Dio.go189 cfgLoc := configLocation()
190 cfgDir := filepath.Dir(cfgLoc)
196 if err := os.WriteFile(cfgLoc, buf, 0600); err != nil {
197 return fmt.Errorf("failed to write config file to %q: %w", cfgLoc, err)
199 debug.Log("Saved config to %s: %+v\n", cfgLoc, c)
/dports/games/xblast/xblast-2.10.4/
H A Dclient.c399 CFGGameHost cfgSrv, cfgLoc; in Client_ReceiveDgramPort() local
412 RetrieveGameHost (CT_Remote, LOCALGAMECONFIG (id), &cfgLoc); in Client_ReceiveDgramPort()
413 Dbg_Client ("server sees me as %s\n", cfgLoc.name); in Client_ReceiveDgramPort()
416 if (0 != strcmp (cfgLoc.name, C2S_ClientName (comm))) { in Client_ReceiveDgramPort()
/dports/graphics/cfdg/cfdg-3.3_1/src-common/
H A Dbuilder.h155 AST::ASTdefine* MakeDefinition(CFG cfgnum, const yy::location& cfgLoc, AST::exp_ptr exp);
H A Dbuilder.cpp361 Builder::MakeDefinition(CFG cfgnum, const yy::location& cfgLoc, exp_ptr exp) in MakeDefinition() argument
364 error(cfgLoc, "Configuration parameters must be at global scope"); in MakeDefinition()
368 ASTdefine* cfg = new ASTdefine(name, cfgLoc); in MakeDefinition()